将 font-weight 粗体应用于选择元素中的选项

发布于 2024-11-04 10:10:10 字数 428 浏览 0 评论 0原文

<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-statusselect 元素中的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

感情洁癖 2024-11-11 10:10:10

这在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文