BlackBerry:[取消]使用 JS 检查 HTML 复选框不起作用
我试图通过使用 javascript (jQuery) 添加和删除 checked="checked"
属性来检查和取消选中 。它在 Firefox 和 Firefox 中运行良好。 IE。添加和删除
disabled="disabled"
效果很好。但如果选中,清除或添加属性都不会执行任何操作。
我正在使用 XHTML 1.0 Strict 编写 - 我尝试将所有内容切换到 HTML 4.1,并仅使用不带等号或值的 checked
,但它仍然不起作用。
我正在使用 BlackBerry 9000 Simulator 4.6.0.200904091609-212 处理 Eclipse。
有什么想法吗?一个错误?谢谢。
I am trying to check and uncheck an <input type="checkbox" />
by adding and removing the checked="checked"
attribute using javascript (jQuery). It works great in Firefox & IE. Adding and removing disabled="disabled"
works perfectly. But with checked, neither clearing nor adding the attribute does anything.
I'm writing in XHTML 1.0 Strict--I tried switching everything around to HTML 4.1 and just using checked
with no equals sign or value, and it still didn't work.
I'm working on Eclipse with the BlackBerry 9000 Simulator 4.6.0.200904091609-212.
Any ideas? A bug? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过以老式方式将 DOM 对象的
checked
属性设置为false
?Have you tried setting the DOM object's
checked
property tofalse
, the old-fashioned way?