点击数据排序无法找到表格

时间:2018-08-05 02:33:51

标签: javascript jquery

我试图在单击表格时获得通知,更具体地说是标题。但是由于某些原因,以下代码将导致不执行任何操作。

$(document).ready(function(){
    $('[data-sort="true"]').on('click', function(){
        console.log('click!');
    });
});

我的桌子看起来像这样:

<table id="tldPricingTable" data-sort="true">
   <thead>
     <tr>
       ....
     </tr>
   </thead>
   <tbody>
      ....
   </tbody>
</table>

我想念什么?

1 个答案:

答案 0 :(得分:0)

您的代码可以正常工作(请参见https://jsfiddle.net/m8hd1au6/6/

<table id="tldPricingTable" data-sort="true">
  <thead>
    <tr>
      <th>Hello</th>
    </tr>
  </thead>
  <tbody>
    <td>Hello</td>
  </tbody>
</table>

<script>
$(document).ready(function(){
    $('[data-sort="true"]').on('click', function(){
        console.log('click!');
    });
});
</script>