2
我有一個腳本來防止表單,除非這三個值中的至少一個不等於0.該檢查有效,但當我將值更改爲不等於0時,提交按鈕仍處於禁用狀態,表格不會提交。任何幫助表示讚賞。JQUERY表單不提交
$("input[type='submit']").click(function(e){
// Stop the form submitting
e.preventDefault();
if($("input[name='satscore']").val() != '0' || $("input[name='actscore']").val() != '0' || $("input[name='gpascore']").val() != '0'){
return true;
}else{
// Tell the user the input is invalid
alert('Please select an option');
}
})
你需要解釋什麼是你的**輸入型**,也許你可以展示你的HTML代碼。 – Jevuska