我正在使用 JQuery 拦截表单,但它在任何版本的 IE 中都不起作用。有没有人有任何提示?我尝试了 form.submit() 但发现它在 Firefox 中存在问题。任何帮助将不胜感激。
$(document).ready(function() {
$("form").submit(function(e) {
if (e.originalEvent.explicitOriginalTarget.id == "myButton") {
if (some status is true continue to submit the form)
return true;
//If the status above is false continue to prompt the user if they want to submit or not
var ok = confirm('Do you really want to save your data?');
if (ok) {
return true;
}
else {
//Prevent the submit event and remain on the screen
e.preventDefault();
return false;
}
}
});
return;
});