gpt4 book ai didi

jquery - 试图改变 UL LI 背景颜色 jquery

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

我正在尝试用 jquery 更改点击的 UL LI 链接;它只适用于悬停事件,不适用于点击事件。请在下面查看我的代码:

$("nav ul li").hover(function() {
$(this).find('a').css('color', '#FF0');
}, function() {
$(this).find('a').css('color', '#FFF');
});

$("nav ul li").click(function() {
$(this).find('a').css('color', '#FF0');
$(this).find('a').siblings().css('color', '#FFF');
});

最佳答案

$(function() {                       //run when the DOM is ready
$(".clickable").click(function() { //use a class, since your ID gets mangled
$(this).addClass("active"); //add the class to the clicked element
});
});

使用此方法,您只需在单击时用一组新属性替换该类。

关于jquery - 试图改变 UL LI 背景颜色 jquery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18488754/

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