我有一个有8列标题的表,点击另一个按钮事件我要检测或突出显示文本值为“s.no”的表头...任何soln?
答案 0 :(得分:0)
$("#gethead").click(function() {
$("#table1").find('th').each(function(){
if($(this).text()=="Sno")
$(this).addClass("highlight");
});
});
.highlight{
background-color:green;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<table id="table1">
<th>Sno</th>
<th>name</th>
<tr>
<td><a href="#" id="sec">asdasd</a>
</td>
</tr>
</table>
<a href="#" id="gethead">outside</a>