gpt4 book ai didi

jquery - 如何使用 jQuery 在单击时突出显示 div?

转载 作者:行者123 更新时间:2023-12-01 07:51:37 24 4
gpt4 key购买 nike

我有一堆带有 tl-box 类的 div

enter image description here

我想突出显示我点击的那个。

注意:如果我点击一个新的 div,该新的 div 应该突出显示。

<小时/>

我已经尝试过:

jQuery

$('.tl-box').click(function () {
$(this).find('.tl-selected').removeClass('tl-selected');
$(this).toggleClass('tl-selected');
});

CSS

.tl-selected{
background: white;
border:3px solid orange;
width:179px;
height:80px;
position: relative;
}

结果

enter image description here

实现这样的目标的最佳方法是什么?

Fiddle

最佳答案

改变

$('.tl-box').click(function () {
$(this).find('.tl-selected').removeClass('tl-selected');
$(this).toggleClass('tl-selected');
});

$('.tl-box').click(function () {
$('.tl-selected').removeClass('tl-selected');
$(this).toggleClass('tl-selected');
});

关于jquery - 如何使用 jQuery 在单击时突出显示 div?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29418697/

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