目前我在使用 jQuerycss()
函数时遇到了一些麻烦。它在悬停时更改锚元素的css值,border-top-color
而不仅仅是锚元素的值。border-top-color
下面是我的代码。
$("#header #headerlist li a:hover").css("border-top-color","rgb(225, 149, 79)");
为什么它会更改#header #headerlist li a
边框顶部颜色和#header #headerlist li a:hover
属性而不仅仅是#header #headerlist li a:hover
属性?