我jquery.form.js(version 3.18)
在我的页面中使用来上传图片。它在 FF 和 Chrome 中运行良好,但在 IE 中不行。
在 IE 中,图像可以成功上传,但我无法从服务器获取 json 返回,并且 IE 显示“访问被拒绝”。ps jquery 版本为 v1.5.1。谁能帮忙??
这是我的js代码:
var options = {
target: '#bar_img_info',
url: 'dealUploadImg.jsp',
type: 'POST',
success: function(msg){
$('#bar_img_info').html(msg);
}
};
$("#uploadForm").ajaxSubmit(options);
这是我的html:
<label>Bar Image:</label>
<input type="file" name="bar_img" value="" id="bar_img"/> <strong style="color: red;"
id="bar_img_info"></strong><br />
<a href="javascript:dealUploadImg();" class="btn">upload</a>