吸盘鱼悬停
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了吸盘鱼悬停相关的知识,希望对你有一定的参考价值。
This would make IE treat the hover element in whichever tag you implemented.
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);
以上是关于吸盘鱼悬停的主要内容,如果未能解决你的问题,请参考以下文章