我试图在单击表格时获得通知,更具体地说是标题。但是由于某些原因,以下代码将导致不执行任何操作。
$(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>
我想念什么?
答案 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>