gpt4 book ai didi

jquery - 如何使用jquery css :hover

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

我正在使用颜色选择器来更改一些元素

function(color) {  
$("#post h1").css("color",color.toHexString());
$("#footer").css("background",color.toHexString());
$("#navigation a:hover").css("background",color.toHexString());
}

#post h1#foooter 工作正常,但如何更改 #navigation a:hover

最佳答案

更新:尝试一下:

$('#navigation').hover(function(){
$(this).css({'color':'your_color_when_mouse_in'});
}, function(){
$(this).css({'color':'your_color_when_mouse_out'});
} );

关于jquery - 如何使用jquery css :hover,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11660704/

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