如何突出显示/检测具有特定文本值jquery的表头

时间:2014-09-26 06:12:22

标签: jquery

我有一个有8列标题的表,点击另一个按钮事件我要检测或突出显示文本值为“s.no”的表头...任何soln?

1 个答案:

答案 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>