Heim >Web-Frontend >js-Tutorial >jquery 必填项判断表单是否为空的方法_jquery

jquery 必填项判断表单是否为空的方法_jquery

WBOY
WBOYOriginal
2016-05-16 19:01:041224Durchsuche

html页面

复制代码 代码如下:












选择发送人*
按城市发送

选择发送人2*
按城市发送



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

<script><BR>function checkForm() { <BR>pass = true; <BR>$("td:contains('*')").next().find("input").each(function(){ <BR>if(this.value == '') { <BR>text = $(this).parent().prev().text(); <BR>alert(text+"是必填项"); <BR>this.focus(); <BR>pass = false; <BR>return false;//跳出each <BR>} <BR>}); <BR>return pass; <BR>} <BR></script>
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn