我有个问题; 出于某种原因,我的函数在页面加载时在 web 应用程序的开头被调用。
我的代码如下
function validateName(element) {
var len = element.value.length;
//checks if the code is than 6 characters
if (len == 0) {
element.style.backgroundColor="red";
if (element.id == "firstname")
{
document.getElementById('firstNameError').style.display = "block";
}
else if (element.id == "lastname") {
document.getElementById('lastNameError').style.display = "block";
}
return true;
} //if == 0
else {
element.style.backgroundColor="green";
if (element.id == "firstname")
{
document.getElementById('firstNameError').style.display = "none";
}
else if (element.id == "lastname") {
document.getElementById('lastNameError').style.display = "none";
}
return false;
} // if != 0
}
此函数的逻辑是验证用户输入姓名的文本框。基本上,我面临的问题是,当我打开网页时,文本框是红色的,并说“你的名字不能为空!” (这是firstNameError
)。然后,一旦我在我的文本框中输入文本,它就不会改变,它仍然保持红色,并显示错误。
这就是我调用函数的方式:
function init() {
var firstName = initToolTip("firstname", "firstnameTip");
var lastName = initToolTip("lastname", "lastnameTip");
var promoCode = initToolTip("promocode", "promocodeTip");
//opens the TOS window when you click 'terms and conditions' link
document.getElementById("clickedTOS").onclick = function() { sAlert(document.getElementById("TOS").innerHTML) };
//checks the length of the promo code
promoCode.onblur = validatePromoCode(promoCode);
//checks the validity of a name (is not blank)
firstName.onblur = validateName(firstName);
lastName.onblur = validateName(lastName);
//document.getElementById('submitButton').onmousedown = validateForm();
}
我不明白为什么在页面加载后立即调用它,因为它已设置为被调用onblur
。任何人都可以建议解决这个问题的方法吗?