我正在使用Malsup 的 jquery 表单插件
我有这个代码。
$(document).ready(function() {
jQuery("input[name=file]").change(function(e){
if( browserType == "MSIE" ){
jQuery("#start_campaign").ajaxForm({
target: '.imgPreview',
url: host+"/forms/campaign-image-upload.php?action=ajaxUploadImage",
beforeSend: function() {
console.log(2);
},
success: function(responseText,statusText,xhr,$form) {
alert('status: ' + statusText + '\n\nresponseText: \n' + responseText +
'\n\nThe output div should have already been updated with the responseText.');
}
}).submit();
} else {
readURL(this);
}
});
});
它在beforeSend
函数上运行,但之后出现这种错误:
SCRIPT3: Member not found.
jquery.form.js, line 349 character 5
LOG: [jquery.form] state = complete
这是第 349 行:
这段代码有什么问题?我一直在互联网上搜索并没有找到答案。
您的帮助将不胜感激和奖励!
谢谢!