gpt4 book ai didi

jquery - 用CLICK改变CSS?

转载 作者:行者123 更新时间:2023-12-01 06:15:03 30 4
gpt4 key购买 nike

是否可以在单击一个链接时更改 CSS,并在单击另一个链接时将其返回到正常状态,同时更改该 CSS?

    <div id="nv_wrap">
<a class="panel nv7" href="#item8"></a>
<a class="panel nv6" href="#item7"></a>
<a class="panel nv5" href="#item6"></a>
<a class="panel nv4" href="#item5"></a>
<a class="panel nv3" href="#item4"></a>
<a class="panel nv2" href="#item3"></a>
<a class="panel nv1" href="#item2"></a>
</div>

最佳答案

使用 jQuery,像这样:

$("#nv_wrap a.panel").click(function(){
$("#nv_wrap a.clicked").removeClass("clicked"); //returns the old one to its normal state
$(this).addClass("clicked"); //assigns an additional class to the clicked element.
});

关于jquery - 用CLICK改变CSS?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3668957/

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