表单javascript的动态验证

时间:2013-06-05 18:39:46

标签: javascript

我有这个表格

<form name="myForm" action="" method="post" onsubmit="return validations(this)"  >


        <span>
            <label>Enter Your First Name</label><input id="name" name= "field[1]" type="text" class="element text" maxlength="255" size="8" value=""/>
        </span>
        <br /><br />
        <span>
            <label>Enter Your Last Name</label><input id="last" name= "field[2]" type="text" class="element text" maxlength="255" size="8" value=""/>

        </span> 
        <br />
        <br />

        <span>
            <input id="field[3]" name="field[3]" class="element radio" type="radio" value="1" />
<.label class="choice" for="field[3]">Male</label>
<input id="field[4]" name="field[4]" class="element radio" type="radio" value="2" />
<label class="choice" for="field[4]">Female</label>

        </span> 
        <br /><br />
        <label class="description" for="field[5]">Enter your city </label><input id="field[5]" name="element_3" type="text" class="element text medium" type="text" maxlength="255" value=""/> 

        <br /><br />
        <span>
            <input id="field[5]" name="field[5]" class="element checkbox" type="checkbox" value="1" />
<.label class="choice" for="field[5]">I am unemployed.</label>
<br /><br />

        </span> 

                <input type="hidden" name="form_id" value="form1" />
</div>              
.               
<.input type="submit" value="Validate" >



        </form> 

我希望在点击“验证”时验证表单。检查所有字段type = text是否都已完成。如何动态执行此操作?

1 个答案:

答案 0 :(得分:1)

您可以使用

执行此操作
  1. 普通JavaScript检查,编写函数并在单击提交按钮时验证每个字段
  2. jQuery验证插件,如果你使用的是jQuery。在你的html页面中包含jQuery和jQuery验证插件,在你的文本字段中添加class =“required”,最后添加一个JavaScript代码来附加验证。
  3. 第二个很简单,因为它只需要调用validate函数并为你的文本字段设置class =“required”

    前:

    在html head标签中包含jQuery和验证插件

    <script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
    <script src="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.11.1/jquery.validate.min.js" type="text/javascript"></script>
    

    将验证附加到表单,将此代码添加到head部分或正文中的任何位置

    <script type="text/javascript">
    jQuery(document).ready(function($){
      $('form[name="myForm"]').validate();
    });
    </script>
    

    现在您的表单字段:

    <form name="myForm" action="" method="post">
      <input type="text" class="required" name="..." ...>
      or simply
      <input type="text" name="..." required>
      .... all other fields
    </form>