巧用jquery实现提交(submit)表单时候验证文本框是否为空
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了巧用jquery实现提交(submit)表单时候验证文本框是否为空相关的知识,希望对你有一定的参考价值。
http://www.cnblogs.com/wifi/articles/2387131.html
先引用jquery
Html部分---------------------------------
<form>
<table>
<tr>
<td align="center"><input id="t1" type="text" size="5" msg="姓名" /> </td>
<td align="center"><input id="t2" type="text" size="5" msg="性别" /></td>
<td align="center"><input id="t3" type="text" size="5" msg="年龄" /></td>
<td align="center"><input id="t4" type="text" size="5" msg="地址" /></td>
<td align="center"><input id="t5" type="text" size="5" msg="邮箱" /></td>
<td align="center"><input id="t6" type="text" size="5" msg="省份" /></td>
</tr>
<tr>
<td align="center"><input type="submit" onclick="return checkNull()" /></td>
</tr>
</table>
<form>
js部分------------------------
<script type="text/javascript">
function checkNull()
{
var num=0;
var str="";
$("input[type$=‘text‘]").each(function(n){
if($(this).val()=="")
{
num++;
str+="?"+$(this).attr("msg")+"不能为空!\\r\\n";
}
});
if(num>0)
{
alert(str);
return false;
}
else
{
return true;
}
}
</script>
以上是关于巧用jquery实现提交(submit)表单时候验证文本框是否为空的主要内容,如果未能解决你的问题,请参考以下文章