日期:2014-05-17 浏览次数:20780 次
<s:form action="loginTea"> 用 户<input type="text" name="sxteacher.teaUsername" /> 密 码<input type="password" name="sxteacher.teaPassword" /> <input name="submit" type="submit" value="登录" style="width:100px"/> </s:form>
<script type="text/javascript"> function check() { if(document.postForm.username.value == "") { alert("不能为空"); return false; } if (document.postForm.password.value.length > 500) { alert("不能为空"); return false; } } </script>
------解决方案--------------------
JS不能判断控件值是否为null,只能判断类似于empty的概念,也就是空串。
首先要让你的控件能够被访问,所以最好指定ID:
<input id="username" type="text" name="sxteacher.teaUsername" />
然后可以编辑函数来实现:
function check() {
var domUser = document.getElementById("username");
if (!domUser.value) {
alert("请填写用户名!");
return false;
}
}
最后是看把这个函数加到哪里去,一般是 submit事件,类似于:
<form ...... onsubmit="return check();">
------解决方案--------------------
<script type="text/javascript"> function check() { if(document.postForm.username.value == "") { alert("不能为空"); return false; } if (document.postForm.password.value == "") { alert("不能为空"); return false; } } </script>
------解决方案--------------------
<script type="text/javascript"> function check() { if(document.postForm.username.value == "") { alert("不能为空"); return false; } if (document.postForm.password.value.length > 500) { alert("不能为空"); return false; } document.postForm.submit() ; } </script> <s:form id="postForm" action="loginTea"> 用 户<input type="text" name="sxteacher.teaUsername" /> 密 码<input type="password" name="sxteacher.teaPassword" /> <input name="submit" type="button" onclick="check();" value="登录" style="width:100px"/> </s:form>