我想在前 24 个子元素上添加悬停,在另一个元素的 24 个单独元素上添加填充。
像这样:
$('tr td:nth-child(1)').mouseover(function(){
$('rect:nth-of-type(1)').css("fill", "black" );
});
$('tr td:nth-child(2)').mouseover(function(){
$('rect:nth-of-type(2)').css("fill", "black" );
});
$('tr td:nth-child(3)').mouseover(function(){
$('rect:nth-of-type(3)').css("fill", "black" );
});
但我不想重复自己24次。处理这个问题的最佳方法是什么?