我在表格中使用可点击的行:
<tbody>
<tr class="clickable-row data-href='url://'>
<th>First</th>
<th>Second</th>
<th>Third</th>
</tr>
</tbody>
<script>
jQuery(document).ready(function($) {
$(".clickable-row").click(function() {
window.document.location = $(this).data("href");
});
$('[data-toggle="tooltip"]').tooltip()
});
</script>
如何使列第一不可点击?
更改
$(".clickable-row").click(function() {
专门收听专栏,即td
,而是:
$(".clickable-row").on('click', 'td', function() {
if (!$(this).index()) return;
!$(this).index()
是"如果点击列的索引为 0"(即第一列(的简称。