當我取消註釋下面的代碼時,alert(1)不會運行,並且我所有的jQuery插件等都不起作用。註釋掉的代碼執行Ajax表單提交。在Chrome控制檯沒有顯示任何錯誤jQuery片段停止工作頁面,但不會拋出錯誤
$('.ui-page-active .image-upload').change(function() {
alert(1);
// $('.ui-page-active #image-upload-form').ajaxSubmit(function() {
// beforeSend: function() {
// console.log('beforeSend');
// // status.empty();
// // var percentVal = '0%';
// // bar.width(percentVal)
// // percent.html(percentVal);
// },
// uploadProgress: function(event, position, total, percentComplete) {
// var percentVal = percentComplete + '%';
// console.log(percentVal);
// },
// complete: function(xhr) {
// console.log(xhr.responseText);
// },
// error: function() {
// alert('error');
// }
// });
});
我不明白這與jQuery Validate插件有什麼關係。已編輯的標籤。 – Sparky