javascript验证表单问题2(不停弹出警告框)
代码如下 :function CheckInput(obj)
{
var tempValue = obj.value;
if(!((tempValue == "A") || (tempValue == "B") || (tempValue == "C")))
{
alert("请输入A、B或C!");
obj.focus();
obj.value = "";
}
}
<input id="result" type=text name=<%=i%>_YUWEN size=1 maxlength=1 onBlur="CheckInput(this)"
当我在输入框中输入非A、B、C的字母后,系统多次弹出提示框,有时2,3次,有时更多。
不知是何原因?
[ 本帖最后由 bccnlyd 于 2011-2-21 13:58 编辑 ]