基本上我想要實現的是當我mouseenter「第一個」的鏈接,第二個鏈接將變成紅色,當我mouseout它應該回到藍色,但我似乎不能目標使用$('this')
。jquery鏈接在不同的鏈接
$('body').on('mouseenter', '.shareButtonsWrapper div a:first-child', function(){
$(this).parent().$(".shareButtonsWrapper div a:last-child").css({"color":"red"});
}).on('mouseleave', '.shareButtonsWrapper div a:first-child', function(){
$(this).parent().$(".shareButtonsWrapper div a:last-child").css({"color":"blue"});
});
看看JSbin http://jsbin.com/OhutAxu/2/edit – Pavel