Lex*_*xys 1 html css jquery z-index
如何在img元素的悬停上设置z-index?当鼠标指针位于img之外时,z-index必须为0,否则应为9.
我知道如何设置它,但不知道如何在悬停时更改它.
$('#content img').click(function () {
$(this).css("z-index", "99")
});
Run Code Online (Sandbox Code Playgroud)
$('#content img').mouseover(function () {
$(this).css("z-index", "9")
});
$('#content img').mouseout(function () {
$(this).css("z-index", "0")
});
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
7964 次 |
| 最近记录: |