正在阅读:javascript进行客户端数据的校验javascript进行客户端数据的校验

2004-02-14 09:34 出处:奥索网 作者:叨叨 责任编辑:zwg
//作者:叨叨 //email:pjzhp@263.net //客户端对用户输入数据校验 //如果输入的内容不满足,则不提交,并且焦点自动跳到该位置。 //比发送以后在服务器端校验数据要好用的多! 脚本代码: <script language="JavaScript"> <!-- function Juge(theForm) { if (theForm.title.value == "") { alert("请输入标题!"); theForm.title.focus(); return (false); } if (theForm.detail.value == "") { alert("请输入内容!"); theForm.detail.focus(); return (false); } if (theForm.name.value == "") { alert("请输入作者!"); theForm.name.focus(); return (false); } if (theForm.email.value == "") { alert("请输入信箱!"); theForm.email.focus(); return (false); } } --> </script>
键盘也能翻页,试试“← →”键

关注我们

最新资讯离线随时看 聊天吐槽赢奖品