我正在尝试使用 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');
});