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>

jqueryで簡単にblur.howのフォームのすべてのテキストフィールドを検証したい。

4

2 に答える 2

0

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

それはあなたが必要とするすべてを行います。

于 2012-10-16T09:39:50.453 に答える
0

jQuery 検証プラグインは、jQuery の事実上のバリデーターです。セットアップが簡単で、高度な構成が可能です。真剣に、それは最高です:)

また、現存する最も古い jQuery プラグインの 1 つであり、jQuery UI 開発者の 1 人によって作成されました...

于 2012-10-16T09:38:52.410 に答える