今天用jquery 的 hover 方法的时候,在火狐上正常,在IE上不会改变背景色。。。
Html代码:
-
<style type="text/css">
-
._hover {background-color: gray;}
-
style>
jquery代码:
为了避免冲突,我在hover前面加了_,即: _hover作为class
Js代码:
-
$("#_content tr").hover(
-
function () {
-
$(this).addClass("_hover");
-
},
-
function () {
-
$(this).removeClass("_hover");
-
});
但是却导致了FF正常,IE不正常。
后来实在想不通,就改了一下class,把_去掉试试,果然是这个原因。。。尼玛
Html代码:
-
<style type="text/css">
-
.hover {background-color: gray;}
-
style>
Js代码:
-
$("#_content tr").hover(
-
function () {
-
$(this).addClass("hover");
-
},
-
function () {
-
$(this).removeClass("hover");
-
});
OK。。。
原文链接:
阅读(1201) | 评论(0) | 转发(0) |