JavaScript 添加:将伪类悬停到IE
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript 添加:将伪类悬停到IE相关的知识,希望对你有一定的参考价值。
sfHover = function() {
var sfEls = document.getElementById(\"nav\").getElementsByTagName(\"LI\");
for (var i=0; i<sfEls.length; i ) {
sfEls[i].onmouseover=function() {
this.className =\" sfhover\";
}
sfEls[i].onmouseout=function() {
this.className=this.className.replace(new RegExp(\" sfhover\\\\b\"), \"\");
}
}
}
if (window.attachEvent) window.attachEvent(\"onload\", sfHover);
以上是关于JavaScript 添加:将伪类悬停到IE的主要内容,如果未能解决你的问题,请参考以下文章
如何将伪类 nth-of-type 与复杂选择器一起使用? [复制]
IE10 悬停伪类在没有背景颜色的情况下不起作用
LESS 将伪类扩展为 !important
CSS伪类选择器active模拟JavaScript点击事件
在 IE7/IE8 中使用 :not() 伪类
:after/::after和:before/::before的区别