使用特定选择器通过 jquery 重置表单

发布于 2024-10-14 02:04:39 字数 313 浏览 1 评论 0原文

我有一个像这样的表单:

<form id='formid'>

<input type='text' name='textname'>
<input type='button' id='resetbutton'>

</form>

现在我想要jquery代码,当按钮(id='resetbutton' in id=formid form)时提交带有id=formid的表单被点击。我希望它也能在 IE7 中运行。

感谢您的帮助。

I have a form like this:

<form id='formid'>

<input type='text' name='textname'>
<input type='button' id='resetbutton'>

</form>

Now I want to jquery code which submit a form with id=formid when a button(id='resetbutton' in id=formid form) is clicked. And I want it to also run in IE7.

Thanks for your help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

八巷 2024-10-21 02:04:39

您应该使用本机重置按钮:

<input type="reset" value=" Reset ">

并使用 jquery 扩展它:

$('#formid').children('input[type="reset"]').click(function() {
//do what you want
};

You should use the native reset button:

<input type="reset" value=" Reset ">

and extend it with jquery:

$('#formid').children('input[type="reset"]').click(function() {
//do what you want
};
叫思念不要吵 2024-10-21 02:04:39
$("#resetbutton").click(function(){
   $("#formid").submit()
});    

这将设置按钮上的单击事件并在执行时提交表单。

$("#resetbutton").click(function(){
   $("#formid").submit()
});    

this will set the click event on the button and submit the form when it's executed.

狼性发作 2024-10-21 02:04:39
(function () {
    var $formObject = $("#formid").eq(0);

    $("#resetbutton", $formObject.get(0)).click(function (){
          $formObject.submit();
    });
})();
(function () {
    var $formObject = $("#formid").eq(0);

    $("#resetbutton", $formObject.get(0)).click(function (){
          $formObject.submit();
    });
})();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文