如何使用jQuery在悬停时设置z-index?

时间:2012-10-08 06:32:58

标签: jquery html css z-index

如何在悬停img元素时设置z-index?当鼠标指针位于img之外时,z-index必须为0,否则应为9。

我知道如何设置它,但不知道如何在悬停时更改它。

$('#content img').click(function () {
    $(this).css("z-index", "99")
});

3 个答案:

答案 0 :(得分:7)

$('#content img').mouseover(function () {
    $(this).css("z-index", "9")
});

$('#content img').mouseout(function () {
    $(this).css("z-index", "0")
});

答案 1 :(得分:4)

仅限css的解决方案:

 #content img{
   z-index:0;
 }

 #content img:hover{
   z-index:9;
 }

答案 2 :(得分:2)

试试这个

$('#content img').hover( 
   function() { 
     $(this).css("z-index", "99")
   },
   function() { 
     $(this).css("z-index", "0")
   });