gpt4 book ai didi

javascript - DIV 与 BORDER 悬停问题

转载 作者:行者123 更新时间:2023-11-28 12:47:07 24 4
gpt4 key购买 nike

HTML:

<div class="container" style="width:200px; height: 200px; border: 10px solid #ccc"> 
contents..
</div>

JQUERY:

$('.container').hover(function() {
console.log('in');
},
function() {
console.log('out');
});

hover同时发生在borderdiv上时,它会生成console.log

目标:

1> Want to make a `hover` event only for `div`, but not for `border`.
2> Fire another `hover` event on `border`, but not for `div`

有可能吗?如果,那么我需要您的热心帮助..

最佳答案

一个务实的解决方案是:

<div class="container" style="width:200px; height: 200px; border: 10px solid #ccc">
<div class="inner" style="height: 200px;">
contents..
</div>
</div>

$('.container .inner').hover(function() {
console.log('in');
},
function() {
console.log('out');
});

我认为是最干净的选择。 JavaScript 解决方案会更复杂,而且根本不值得。

关于javascript - DIV 与 BORDER 悬停问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6507037/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com