🌐
经济型:买域名、轻量云服务器、用途:游戏 网站等 《腾讯云》特点:特价机便宜 适合初学者用
点我优惠购买
🚀
拓展型:买域名、轻量云服务器、用途:游戏 网站等 《阿里云》特点:中档服务器便宜 域名备案事多
点我优惠购买
🛡️
稳定型:买域名、轻量云服务器、用途:游戏 网站等 《西部数码》 特点:比上两家略贵但是稳定性超好事也少
点我优惠购买
温馨提示:这篇文章已超过528天没有更新,请注意相关的内容是否还可用!
方法一:JS判断提交
js函数
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | function checkUser(){ var result = document.getElementById( "userid" ).value; var password = document.getElementById( "userpassid" ).value; if (result == "" ){ return false ; } if (password == "" ){ alert( "密码不能为空" ); return false ; } else { return true ; } } |
form表单
1 2 3 4 5 | < form id = "formid" name = "myform" method = 'post' onsubmit = "return checkUser();" > < input type = "text" value = "" class = "text2" name = "username" id = "userid" /></ td > < input type = "password" value = "" class = "text2" name = "userpass" id = "userpassid" /></ td > < input type = "submit" value = "" class = "btn2" /> </ form > |
方法二:
1 2 3 4 5 6 7 8 9 10 11 12 13 | function checkUser(){ var result = document.getElementById( "userid" ).value; var password = document.getElementById( "passid" ).value; if (!result){ alert( "用户名不能为空" ); return false ; } if (!password){ alert( "密码不能为空" ); return false ; } document.getElementById( "formid" ).submit(); } |
form表格的写法,需要写id
1 | < form id = "formid" method = 'post' > |
button按钮的写法如下:
1 | < input type = "button" value = "" class = "btn2" onclick = "checkUser();" /> |
文章版权声明:除非注明,否则均为执刀人的工具库原创文章,转载或复制请以超链接形式并注明出处。
还没有评论,来说两句吧...