2

img 要素のホバー時に z-index を設定するにはどうすればよいですか? マウス ポインターが img の外にある場合、z-index は 0 である必要があり、それ以外の場合は 9 である必要があります。

設定方法は知っていますが、ホバー時に変更する方法はわかりません。

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

3 に答える 3

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

$('#content img').mouseout(function () {
    $(this).css("z-index", "0")
});
于 2012-10-08T06:36:12.307 に答える
4

cssのみのソリューション:

 #content img{
   z-index:0;
 }

 #content img:hover{
   z-index:9;
 }
于 2012-10-08T06:54:44.843 に答える
2

これを試してみてください

$('#content img').hover( 
   function() { 
     $(this).css("z-index", "99")
   },
   function() { 
     $(this).css("z-index", "0")
   });
于 2012-10-08T07:35:28.983 に答える