我知道我错过了一小部分...但是对于这样的标记:
<a class="menusegment"><div>Link Text & Link Description</div></a>
我有以下jquery
$('a.menusegment').hover(function () {
// insert code here
});
我想要做的是更改'a.menusegment'中包含的div的顶部边框颜色
非常感谢任何帮助。
谢谢!
答案 0 :(得分:3)
$(function(){
$('a.menusegment').hover(function () {
var thisNode = $(this);
thisNode.children('div').css('border-top', '1px solid #f60');
});
});
答案 1 :(得分:2)
$('a.menusegment div').hover(function (e) {
e.stopPropagation();
// change color here
},
function(){
//code to execute on mouseleave
}
);
答案 2 :(得分:2)
如果我理解你的问题......你不需要任何类型的js
在CSS中:
a.menusegment:hover div{
border-top:solid red 1px;
}