JQuery - 表单重置 - 排除“选择”盒子
所有,
我可以使用以下 JQuery 语法重置所有表单元素:
('#myform')[0].reset();
如何修改它以排除“选择框”值的重置?
谢谢
All,
I can reset all my form elements using the following JQuery Syntax:
('#myform')[0].reset();
How can I modify this to exclude the reset of "select box" values?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
对于每个人..
重置功能不会将所有内容设置为“”(空字符串),
它会重置为其初始值..(存储在值属性中,或选定的选项等..)
如果您想保持默认的重置功能,那么您应该
示例一样:
To everyone..
the reset function does not set everything to '' (empty string)
it reset to their initial values .. (stored in the value attribute, or selected option etc..)
If you want to maintain the default reset features then you should
<select>
elementsexample:
那不是 jQuery,而是原生 javascript。 [0] 显示实际的 DOM 元素,因此它与以下内容相同:
reset()
是重置整个表单的内置浏览器实现。如果您需要重置单个表单类型,请尝试以下操作:您可以在此处查看所有表单选择器:http://docs。 jquery.com/选择器
That's not jQuery, it's native javascript. [0] brings out the actual DOM element, so it's the same as:
reset()
is a built-in browser implementation that resets the entire form. If you need to reset individual form types, try something like:You can see all form selectors here: http://docs.jquery.com/Selectors
您可以通过将值设置为空字符串并使用 David 的答案重置复选框来进行假重置(或此 更完整的)。您还可以尝试在重置表单之前存储每个选择元素的值,然后在之后恢复值:
You can do a fake reset by setting the values to an empty string and resetting the checkboxes using David's answer (or this more complete one). You could also try storing each select element's value before resetting the form and then restore the values after:
无论出于何种原因,大卫的正确答案错误了我的 Google Chrome js。它说:
Uncaught TypeError: Property 'reset' of object # is not a function
...所以我决定尝试一个稍微不同的解决方案:
重置
For whatever reason, David's right-on answer error'd my Google Chrome js. It's saying:
Uncaught TypeError: Property 'reset' of object # is not a function
...so I decided to try a slightly different solution:
<input id="resetbutton" type="reset" style="visibility:hidden;" name="reset" value="reset" />
<a href="#" onclick="$('#resetbutton').click();">Reset</a>