>  기사  >  웹 프론트엔드  >  关于IE11和IE9的差别导致css不好用的问题_html/css_WEB-ITnose

关于IE11和IE9的差别导致css不好用的问题_html/css_WEB-ITnose

WBOY
WBOY원래의
2016-06-24 11:42:101145검색

同样的代码


style中的代码在IE9中好使,在IE11中就不起作用,显示的字体还是黑色的

求大神帮忙。。。。


回复讨论(解决方案)

不要大惊小怪的,
option 闭合标签呢?

另外还有种!important写法,比内联权重要高的.

不要大惊小怪的,
option 闭合标签呢?


我只是粘贴了部分代码,在IE9中是好使的
我想实现的是,如果下拉框选中的是222222的时候,下拉框中的字体表示成红色

[selected=selected]{color:red;}

selected=selected

低版本IE不能全面支持CSS2.(IE67)

<select id="myselect" style="color:red">      <option style="color:black" value="1">1111</option>      <option style="color:red" selected value="2">2222222</option></select><script type="text/javascript">document.getElementById("myselect").onchange = function(){	this.style.color = this.options[this.selectedIndex].style.color;}</script>

<select id="myselect" style="color:red">      <option style="color:black" value="1">1111</option>      <option style="color:red" selected value="2">2222222</option></select><script type="text/javascript">document.getElementById("myselect").onchange = function(){	this.style.color = this.options[this.selectedIndex].style.color;}</script>

大神呐!!!
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.