代码示例:
<body>
<div id="something" style="width: 50vw; height: 300px;">
</div>
<div class="else">oekdoekod</div>
</body>
问题是我只需要在悬停身体时使用光标指针效果,而不是将div
与id="something"
一起悬停。
它不起作用
:not(#something) {
cursor: pointer;
}
但
$(document.body).on("hover", ":not(#something, #something *)",function(e){
$(this).addClass("pointer");
e.stopPropagation();
});
用css
.pointer {
cursor: pointer;
}
它有效但仅限于其他元素,例如.else
如何pointer
光标仅在hover
身上而不是#something
身上应用{{1}}个事件?
答案 0 :(得分:0)
这对我有用,你在用什么浏览器测试?这是JSBin。
<强> CSS 强>
body{
cursor:crosshair;
}
#something {
width: 50vw;
height: 300px;
background-color:rgba(0,0,255,.2);
cursor:pointer;
}
#else{
width: 50vw;
height: 300px;
background-color:rgba(0,255,255,.2);
}
<强> HTML 强>
<div id="something"></div>
<div id="else"></div>
答案 1 :(得分:0)
根据你的描述在主体上有一个指针光标而不是#something,这应该可以解决问题:
body {
cursor: pointer;
}
#something {
cursor: auto;
}