我是靠谱客的博主 淡然苗条,最近开发中收集的这篇文章主要介绍jquery 必填项判断表单是否为空的方法,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

html页面

复制代码 代码如下:

<form onsubmit="if(confirm('确定好你所填写的正确,不然会发错!')) {return checkForm();}else{return false;}" >
<table >
<tr>
<td>选择发送人<font class="red">*</font></td>
<td>
<input type="text" name="sendto_type[]" id="sendto_type1" value="1" >按城市发送

</td>
</tr>

<tr>
<td>选择发送人2<font class="red">*</font></td>
<td>
<input type="text" name="sendto_type[]" id="sendto_type1" value="1" >按城市发送
</td>
</tr>
</table>
</form>

js代码
复制代码 代码如下:

<script>
function checkForm() {
pass = true;
$("td:contains('*')").next().find("input").each(function(){
if(this.value == '') {
text = $(this).parent().prev().text();
alert(text+"是必填项");
this.focus();
pass = false;
return false;//跳出each
}
});
return pass;
}
</script>

最后

以上就是淡然苗条为你收集整理的jquery 必填项判断表单是否为空的方法的全部内容,希望文章能够帮你解决jquery 必填项判断表单是否为空的方法所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(146)

评论列表共有 0 条评论

立即
投稿
返回
顶部