如何在jquery

时间:2017-03-31 09:24:20

标签: javascript jquery html twitter-bootstrap

我以表格格式显示表单详细信息。但我想对重复值应用验证。

我有两个验证。

  1. 我第一次输入min值1和max值100,现在这些值将以相同页面的表格格式显示。

  2. 现在我将输入第二次min值101和max值200或infinity,假设我将输入1到100之间的最小值,它不应该允许这样做,因为我已经输入max值100,所以接下来它也需要101。

  3. 在jquery或javascript中是可能的吗?。

    <table id="transaction" class="display" width="100%" cellspacing="0">
       <thead>
          <tr>
             <th>Name</th>
             <th>Email</th>
             <th>Min</th>
             <th>Max</th>
          </tr>
       </thead>
       <tbody>
       </tbody>
    </table>
    <form id="localStorageTest" method="post" action="">
       <label>Name:</label>
       <input type="text" name="name" id="name" class="stored" value="" />
       <label>Email:</label>
       <input type="email" name="email" id="email" class="stored" value="" />
       <label>Min:</label>
       <input type="text" name="min" id="min" class="stored" value="" />
       <label>Max:</label>
       <input type="text" name="max" id="max" class="stored" value="" />
       <button type="button" class="btn btn-success savebtn" style="padding: 6px 12px;" id="savebutton"><i class="icon-check-sign" aria-hidden="false"></i> Save </button>
    </form>
    

1 个答案:

答案 0 :(得分:1)

是的,您可以使用onChange或onkeyup事件检查javascript中您需要验证的文本框中的值。您只需要将这些值与之前存储的值进行比较。