我正在使用 ajax 上传来上传图像。它在所有浏览器中都可以使用,但在 IE 中无法使用。
这是我使用的代码,
$('#photoimg').live('change', function(){
$(".selectedphoto").html('');
$(".selectedphoto").html('<img src="loader.gif" alt="Uploading...."/>');
$("#imageform").ajaxForm({
target: '.selectedphoto',
success: onsuccess,
}).submit();
})';
HTML
<form id="imageform" method="post" enctype="multipart/form-data" action='ajaximage.php'>
<input type="file" name="photoimg" id="photoimg" class="required" />
</form>
提前致谢。