将 font-weight 粗体应用于选择元素中的选项
<style type = "text/css">
.myClass{
font-weight: bold ;
font-size: 8pt;
color:red;
}
</style>
$(document).ready(function(){
$("#select1 > option[data-status=YES]").addClass("myClass");
});
它在 IE 6.0 和 IE 8.0 中不起作用,但在 Mozilla 中运行良好。如何将 font-weight:bold
应用于具有 data-status
的 select
元素中的 option
为“是
”。
<style type = "text/css">
.myClass{
font-weight: bold ;
font-size: 8pt;
color:red;
}
</style>
$(document).ready(function(){
$("#select1 > option[data-status=YES]").addClass("myClass");
});
It is not working in IE 6.0 and IE 8.0 and It is working fine in Mozilla. How do I apply font-weight: bold
to the option
in the select
element that has the data-status
as "YES
".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这在 IE6 中是不可能的。即使在现代浏览器中,表单元素的样式也极其有限。
您必须使用基于 JavaScript 的
select
替代方案,例如 这个This is not possible in IE6. Styling form elements is extremely limited even in modern browsers.
You would have to use a JavaScript-based
select
alternative like this one.