這是我正在使用的代碼片段。在這裏根據我的預期,代碼執行不會停止並且表單被提交。雖然警告框出現,但在按下「確定」之後,表單被提交。提醒框不停止執行/提交表格
$('.qto').each(function(index) {
if (jQuery.inArray($("#quota-" + (index + 1)).val(), quoatas) != -1) {
alert("Please check the different values you have entered");
return false;
}
quoatas.push($("#quota-" + (index + 1)).val());
});
你在哪裏提交表格? –