我正在使用jQuery form plugin來上傳文件。該插件使用隱藏的iframe來JavaScript不適用於Ajax生成的代碼?
上傳而不刷新頁面。一切正常,除了JavaScript不工作
生成的代碼。這裏是我的代碼:
<form id="image_form" action="" method="post" enctype="multipart/form-data">
<input type="file" id="image_file" name="image_file"><br>
<input type="submit" value="upload">
</form>
<div id="avatar_wrapper">
</div>
這種形式上傳圖像到服務器和服務器將返回一些處理後的圖像。
<script type="text/javascript">
$(document).ready(function() {
var options = {
success: showResponse,
dataType: 'html'
};
$('#image_form').ajaxForm(options);
$('.choose_avatar').hover(function() { /* Just for test */
alert('hello');
});
});
function showResponse(responseText, statusText, xhr, $form) {
$('#avatar_wrapper').append(responseText);
}
</script>
responseText包含一些圖像。
<img src="http://localhost/avatar/0.jpg" class="choose_avatar" choice=0>
<img src="http://localhost/avatar/1.jpg" class="choose_avatar" choice=1>
<img src="http://localhost/avatar/2.jpg" class="choose_avatar" choice=2>
我寫這些代碼來測試:
$('.choose_avatar').click(function() { /* Just for test */
alert('hello');
});
很奇怪的是,點擊功能不會對這些生成的代碼工作。 有人可以幫助我嗎?謝謝。
它的工作原理!謝謝。 – thoslin 2011-03-28 08:49:37