我试图突出显示< th>的< td>目前正在盘旋。
我可以突出显示第一个< tr>使用:
#sheet tr:hover td:first-child { color:#000; background:#EAEAEA; }
有没有办法这样做的第一个?
注意 – 我正在使用< th>的范围,像这样< th scope =“col”>可以利用这个吗?
注2 – 或者,有没有办法获取当前列?
解决方法
这是一个JavaScript解决方案。我知道你真的想要一个CSS只是回答这个,但由于这是不可能的,我尽量保持尽可能多的CSS:
首先,你的桌子需要有colgroups。每列一个
<table class="coltest"> <colgroup><col/><col/></colgroup> <thead><td>Left</td><td>Right</td></thead> <tbody> <tr><td>1</td><td>2</td></tr> <tr><td>3</td><td>4</td></tr> </tbody> </table>
我还宣布了一些简单的CSS来附加到我们的col,当徘徊:
.colhover { background-color: yellow; }
最后,jQuery开启鼠标悬停:
$("table.coltest td").hover(function() { // get the colgroup at this elements specific index (col1,col2,etc) $("col").eq($(this).index()).addClass('colhover'); },function() { $("col").eq($(this).index()).removeClass('colhover'); });
当鼠标悬停在td上时,会触发此事件,使整个colgroup的td属于黄色。
你可以在jsfiddle here看到一个例子。