我正在使用颜色选择器来更改一些元素
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?