Heim >Web-Frontend >HTML-Tutorial >为什么在Ie6下不行ul.cssmenu li:hover a{color:#0d66a1;background-color: #f1f1f1;_html/css_WEB-ITnose

为什么在Ie6下不行ul.cssmenu li:hover a{color:#0d66a1;background-color: #f1f1f1;_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 12:09:491092Durchsuche

为什么在谷歌下,ie8下可以,ie6下不行,请问怎样修改才能在ie6下发生作用

ul.cssmenu li:hover a{color:#0d66a1;background-color: #f1f1f1;box-shadow:0px 2px 3px #333;background-image: none}

其表如下,请高人指点,谢谢


回复讨论(解决方案)

这个阴影不行就算了,背景也不行,好像hover根本没起作用

ul.cssmenu li a:hover ul{ left:auto;}
这个也不起作用,不知道是不是同样的原因

http://www.21shipin.com/html/64806.shtml

不明白,有没有具体例子

ie6不支持 li:hover 这样的,兼容得用js来做。

对头,就是这个意思,你要用js来实现这个效果才可以 ie6不支持 li:hover 这样的,兼容得用js来做。

上面的正解了,用jquery去实现,

有没有具体的方法,给个例子

首先把样式改成
ul.cssmenu li.selected a{color:#0d66a1;background-color: #f1f1f1;box-shadow:0px 2px 3px #333;background-image: none}


然后在html引入jquery库
<script></script>

再写一段js代码

<script> <br /> $(function(){ <br /> $menuLi = $("ul.cssmenu>li"); <br /> $menuLi.hover(function() { <br /> $(this).addClass("selected"); <br /> },function(){ <br /> $(this).removeClass("selected"); <br /> }) <br /> }) <br /> </script>

http://download.csdn.net/detail/wayo2008/3829178
原来我也遇到过类似情况,共享了下~希望对你有帮助。

ie6中非a元素不支持:hover属性   楼主可以用js实现

ul.cssmenu li:hover a{color:#0d66a1;background-color: #f1f1f1;box-shadow:0px 2px 3px #333;background-image: none}
改成:
ul.cssmenu li a:hover{color:#0d66a1;background-color: #f1f1f1;box-shadow:0px 2px 3px #333;background-image: none}
给li a一个display:inline-block属性.模拟成li...

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn