有时候我们想在非a标签上加hover元素 但是我们都知道IE6下不支持XX:hover,所以我们现在可以用js实现掉:代码如下
<script type="text/javascript">
var Hover = function(){
var listItem = document.getElementById("nav").getElementsByTagName("li");
for(var i=0;i<listItem.length;i++){
listItem[i].onmouSEOver = function(){
this.className +=" stest";
}
listItem[i].onmouSEOut = function(){
thisthis.className = this.className.replace(/stest\b/,""); // \b 查找位于单词的开头或结尾的匹配。
}
}
}
if(window.attachEvent){
window.attachEvent('onload',Hover);
}