0
我在我的網站的不同頁面上有兩種形式,但是我想重新使用javaScript驗證。因此,例如:具有多種形式的javaScript表單驗證
function notnull() {
var firstName = document.forms["newsletter"]["firstName"].value;
if (firstName === null || firstName === "") {
inlineMsg('firstName', 'You must enter your name.', 3000000);
return false;
} else {
return true;
}
}
此代碼是隻爲我的通訊形式良好(如document.forms [「通訊」] [「名字」]值。),但我想用我的「接觸」的形式太。
我可以像document.forms [] []。動態構建變量嗎?