标签:
<head> <script type="text/javascript"> $("#sub1").click(function(){ var text1=$("#text1").val(); if(text1==""){ alert("不能为空!"); $("#text1").select(); $("#text1").focus(); }else{ $("#form1").submit(); } }) </script> </head> <body> <form id="form1" method="post" action=""> <input type=text id="text1"/> <input type="submit" id="sub1"搜索 value="提交"> </form> </body>
jQuery判断 form表单提交时如果表单里有input标签为空那么不提交form表单
标签:
原文地址:http://www.cnblogs.com/sunhaoyu/p/4821499.html