<tr>
すべてに多くのものが含まれ、それぞれに他の多くを含めることができるテーブルがあります<div>
(それらは自動的に生成されます)
次に、マウスを移動したときに、すべての子 (および(others div)の子) を変更backgounrd-color
したい<tr>
<div>
<div>
<tr>
それから私はこれを使用しました:
$('.ui-datagrid-column').live('mousemove',function(){
$(this).css('background-color', 'red');
$(this).children().css('background-color', 'red');
//ui-layout-unit-content ui-widget-content
});
//.ui-layout-container
$('.ui-datagrid-column').live('mouseleave',function(){
$(this).css('background-color', 'white');
$(this).children().css('background-color', 'white');
});
ただし、内部のdivの背景は変更されません<tr>
どうすればそれを達成できますか