不工作我使用Malsup's jquery form plugin上傳使用jQuery插件的Ajax圖像中的IE
我有這樣的代碼。
$(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:
什麼是與此代碼的問題?我一直在網上搜索,沒有找到答案。
您的幫助將不勝感激和回報!
謝謝!
爲什麼有人會贊成這個出色的答案? – PinoyStackOverflower