如何在可点击行中制作不可点击的列



我在表格中使用可点击的行:

<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"(即第一列(的简称。

相关内容

  • 没有找到相关文章

最新更新