0

任何 jquery 插件路径,易于用于表单的每个文本字段的表单验证。

enter code here <form id="form1" name="form1" method="post" action=""><table width="500" align="center">
<tr>
  <td colspan="2" align="center"><strong>Please Add Bill Record</strong></td>
</tr>
<tr>
  <td width="133">Number</td>
  <td width="355"><input type="text" name="number" id="number"  /></td>
</tr>
<tr>
  <td>Amount</td>
  <td><input type="text" name="amount" id="amount" /></td>
</tr>
<tr>
  <td>type</td>
  <td><label for="elc"></label>
    <select name="elc" id="elc" tabindex="3">
      <option>elecricity</option>
      <option>gas</option>
      <option>telephone</option>
  </select></td>
</tr>
<tr>
  <td>&nbsp;</td>
  <td>&nbsp;</td>
</tr>
<tr>
  <td>&nbsp;</td>
  <td><input type="submit" name="submit" id="submit" value="Save" />
  <input type="reset" name="clear" id="clear" value="Clear" /></td>
</tr>

我想在 blur.how 上验证表单的每个文本字段,jquery 是多么容易。

4

2 回答 2

0

jQuery 验证插件是 jQuery 的事实上的验证器。易于设置,高度可配置。说真的,这是最好的:)

它也是现存最古老的 jQuery 插件之一,由一位 jQuery UI 开发人员编写...

于 2012-10-16T09:38:52.410 回答
0

http://bassistance.de/jquery-plugins/jquery-plugin-validation/

它可以满足您的一切需求。

于 2012-10-16T09:39:50.453 回答