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行目です。
このコードの何が問題になっていますか?インターネットで検索してみましたが、答えが見つかりませんでした。
あなたの助けは大いに感謝され、報われるでしょう!
ありがとう!