当前位置: 首页 > 面试题库 >

如何使用jQuery与.reset()方法重置表单

许焕
2023-03-14
问题内容

单击重置按钮时,我有可以重置表单的工作代码。但是,在我的代码变长之后,我意识到它不再起作用了。

 <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>

可能是原因之一吗?


问题答案:

我终于解决了问题!@RobG对form标签和table标签是正确的。 form标签应放置在表外。接着就,随即,

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

不需要jquery或其他任何东西就可以工作。只需单击按钮,然后tadaa〜整个表单将被重置;)辉煌!



 类似资料:
  • 我有工作代码,当我点击重置按钮时,可以重置我的表单。然而,在我的代码变得越来越长之后,我意识到它不再工作了。 和我的jQuery: 是否有一些源代码应该包含在我的代码中,以便使用<代码>。reset()方法是否有效?之前我使用: 并且方法正在工作。 目前我正在使用 这可能是原因之一吗?

  • 问题内容: 我想在调用ajax函数后重置表单。这是我在jquery中给出的代码: 这是表格的ID。但是,当我使用此代码时,我收到了这样的错误消息。 在我的html中,我将ID设置为如下形式: 那么我的代码有什么问题呢? 问题答案: 在jQuery中 用Java语言编写

  • 全部显示 将指定的内置命令栏重置为默认的配置,或将指定的内置命令栏控件重置为其初始的函数和图符。 expression.Reset expression 必需。该表达式返回一个CommandBar、CommandBarControl、CommandBarButton、CommandBarPopup 或CommandBarComboBox 对象。 说明 重置一个内置控件将恢复该控件原来对应的动作,并

  • 在CSS优先级课程中,我们提到过浏览器样式。每个网页都至少使用一个CSS:用户代理样式表,当某个元素没有被定义样式时,就使用这个默认样式。 用户代理样式表 这个CSS文件被内置于浏览器中,并在如下情况下被调用: 每次网页被渲染时 在作者样式和用户样式调用之前 每个浏览器都有自己的用户代理CSS,有一些细微的差别。 为什么使用CSS样式重置 不同浏览器的默认样式可能会干扰我们实际想要的效果,所以我们

  • 本文向大家介绍如何在jQuery中使用jQuery.insertAfter()方法?,包括了如何在jQuery中使用jQuery.insertAfter()方法?的使用技巧和注意事项,需要的朋友参考一下 insertAfter(selector)方法将所有匹配的元素插入另一个指定的元素集之后。 这是此方法使用的所有参数的描述- selector 选择器 -插入所选元素之后的内容。 示例 您可以尝试

  • 本文向大家介绍如何在jQuery中使用jQuery.wrapInner()方法?,包括了如何在jQuery中使用jQuery.wrapInner()方法?的使用技巧和注意事项,需要的朋友参考一下 该方法使用DOM元素包装每个匹配元素(包括文本节点)的内部子内容。 这是此方法使用的所有参数的描述- html- 将围绕目标包装的DOM元素。 示例 您可以尝试运行以下代码以了解如何在jQuery中使用j