我有工作代码,可以重置我的表单时,我点击重置按钮。然而,当我的代码变长后,我意识到它不再工作了。

<div id="labels">
  <table class="config">
    <thead>
      <tr>
        <th colspan="4"; style= "padding-bottom: 20px; color:#6666FF; text-align:left; font-size: 1.5em">Control Buttons Configuration</th>
      </tr>
      <tr>
        <th>Index</th>
        <th>Switch</th>
        <th>Response Number</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>            
      <form id="configform" name= "input" action="#" method="get">
        <tr>
          <td style="text-align: center">1</td>
          <td><img src= "static/switch.png" height="100px" width="108px"></td>
          <td id="small"><input style="background: white; color: black;" type="text" value="" id="number_one"></td>
          <td><input style="background: white; color: black;" type="text"  id="label_one"></td>
        </tr>
        <tr>
          <td style="text-align: center">2</td>
          <td><img src= "static/switch.png" height="100px" width="108px"></td>
          <td id="small"><input style="background: white; color: black;" type="text" id = "number_two" value=""></td>
          <td><input style="background: white; color: black;" type="text"  id = "label_two"></td>
        </tr>
        <tr>
          <td style="text-align: center">3</td>
          <td><img src= "static/switch.png" height="100px" width="108px"></td>
          <td id="small"><input style="background: white; color: black;" type="text" id="number_three" value=""></td>
          <td><input style="background: white; color: black;" type="text" id="label_three"></td>
        </tr>
        <tr>
          <td style="text-align: center">4</td>
          <td><img src= "static/switch.png" height="100px" width="108px"></td>
          <td id="small"><input style="background: white; color: black;" type="text" id="number_four" value=""></td>
          <td><input style="background: white; color: black;" type="text" id="label_three"></td>
        </tr>
        <tr>
          <td></td>
          <td><input type="submit" id="configsubmit" value="Submit"></td>
        </tr>
        <tr>
          <td><input type="reset" id="configreset" value="Reset"></td>
        </tr>
                  
      </form>
    </tbody>
  </table>
            
</div>

和我的jQuery:

$('#configreset').click(function(){
    $('#configform')[0].reset();
});

是否有一些源代码,我应该包括在我的代码中,以使.reset()方法工作?之前我用的是:

<script src="static/jquery.min.js"></script>
<script src="static/jquery.mobile-1.2.0.min.js"></script>

并且.reset()方法正在工作。

目前我正在使用

<script src="static/jquery-1.9.1.min.js"></script>      
<script src="static/jquery-migrate-1.1.1.min.js"></script>
<script src="static/jquery.mobile-1.3.1.min.js"></script>

这可能是原因之一吗?


当前回答

你可以尝试使用trigger() Reference Link

$('#form_id').trigger("reset");

其他回答

jQuery没有reset()方法;但是原生JavaScript可以。因此,将jQuery元素转换为JavaScript对象可以使用:

$("#formId")[0].reset();

$("#formId").get(0).reset();

我们可以简单地使用Javascript代码

document.getElementById("formid").reset();

我终于解决了这个问题!! @RobG对表单标签和表格标签的看法是正确的。表单标签应该放在表的外面。,

<td><input type="reset" id="configreset" value="Reset"></td>

工作不需要jquery或其他任何东西。简单点击按钮,tadaa~整个表单重置;)精彩!

重置按钮根本不需要任何脚本(或名称或id):

<input type="reset">

做完了。但是如果你真的必须使用脚本,请注意每个表单控件都有一个引用它所在表单的表单属性,所以你可以这样做:

<input type="button" onclick="this.form.reset();">

但重置按钮是更好的选择。

根据这篇文章,jQuery没有reset()方法;但是原生JavaScript可以。因此,将jQuery元素转换为JavaScript对象可以使用:

$("#formId")[0].reset()
// or
$("#formId").get(0).reset()

通过jquery函数. nearest (element)和.find(…)

获取父元素并寻找子元素。

最后,做所需的函数。

$("#form").closest('form').find("input[type=text], textarea").val("");