私には4つli
の要素があり、ホバーすると(mouseenter
、mouseleave
)それらの全員が、選択した全員の背景色を変更します。
私はこのコードでこの作業を行います:
<script>
$( document ).ready(function()
{
$('#center-group').children().on('mouseenter',function(){
$(this).children('.topmenu').children('.r-part').css('background-color','#810000');
$(this).children('.topmenu').children('.r-part').children('.r-part-bot').css('background-color','#980000');
});
$('#center-group').children().on('mouseleave',function(){
$(this).children('.topmenu').children('.r-part').css('background-color','#404040');
$(this).children('.topmenu').children('.r-part').children('.r-part-bot').css('background-color','#4c4c4c');
});
});
</script>
今、私が欲しいのは、( click event
) li の全員が背景色を変更し、トップイベントが機能しない場合です!!! どうやって?私を案内してください....