Jquery attr 函数在 IE7 中不起作用
我正在使用 jQuery 1.3.2,看来 attr 函数在 IE8 和 FF 3 中有效,但在 IE7 中无效。
有问题的代码:
.attr("disabled",true)
或者
.attr("disabled","disabled")
是否有其他方法来禁用元素? (SELECT 元素中的特定选项)
谢谢。
I am using jQuery 1.3.2, It seems the attr function does work in IE8 and FF 3 but not in IE7.
The problematic code:
.attr("disabled",true)
or
.attr("disabled","disabled")
Is there an alternative way to disable an element? (a specific option in a SELECT element)
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
IE 7 不支持选择选项中的
disabled
。这不是 jQuery 问题。此中有详细信息博客文章。
有一些基于 Javascript 的解决方法,例如这个添加功能(但是,即使他们也无法使选择呈现灰色外观。)
IE 7 does not support
disabled
in select options. It's not a jQuery issue.There's detailed info in this blog post.
There are Javascript based workarounds like this one that add the functionality (however, even they are not able to give the select the greyed-out look.)