我在下一个按钮中有问题改变样式border-left-color,如果主按钮悬停,我需要相同的功能“focus”=>如果主按钮是“焦点”。
感谢您的帮助
$("button").hover(
function () {
$(this).nex("button").css("border-left-color", "#6e6e6e");
},
function () {
$(this).nex("button").css("border-left-color", "#bdbdbd");
}
);
答案 0 :(得分:1)
仅使用CSS:
button:hover + button {border-left-color: #6e6e6e;}