我如何“激活”尚未加载的单选按钮?
如何“激活”尚未加载的单选按钮?
它类似于 .live() 但仅适用于单选按钮。
How do I "active" a radio button that hasn't been load yet?
It's like .live() but only for radio button.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
除非必要,否则不要使用 jQuery。如果您要向页面添加一个元素,或者它是一个要在页面首次加载时检查的元素,只需在 HTML 中正确设置该值(或任何服务器端语言创建 HTML 输出):
如果它 IS是用jQuery添加的,我假设它是用
.html()
或.append()
或任何其他方法完成的;在这种情况下,建议仍然适用:Don't bother with jQuery unless you have to. If you're adding an element to the page or if it's an element that's meant to be checked when the page first loads, just set the value right in the HTML (or whatever server-side language creates HTML output):
If it IS being added with jQuery, I assume it's being done with
.html()
or.append()
or whatever other method; in which case the advice still applies:使用
.prop()
方法(jQuery 1.6 之前)use
.prop()
method ( prior to jQuery 1.6)使用
use