-1
表單提交時出現「遞歸太多」的錯誤,這裏是我的代碼任何人都可以告訴我什麼是問題?在jquery中提交表單時遞歸錯誤太多
$("#ajax-post-form").on('beforeSubmit', function (e) {
var postType = $("#post-posttype").val();
var postVideo = $("#post-postvideo").val();
var postImages = $("#post-postimages").val();
if(postVideo == '' && postType == 3) {
alert("Please upload video");
return false;
}
else if(postType == '1' || postType == '2') {
if(postType == '2' && postImages == '') {
alert("Please upload image");
return false;
} else {
$("#spinnerLoader").show();
$("#ajax-post-form").submit();
return true;
}
}