使用特定选择器通过 jquery 重置表单
我有一个像这样的表单:
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您应该使用本机重置按钮:
并使用 jquery 扩展它:
You should use the native reset button:
and extend it with jquery:
这将设置按钮上的单击事件并在执行时提交表单。
this will set the click event on the button and submit the form when it's executed.