我正在使用bootstrap表。目前,当您点击列时,您会收到提醒。我想要的是当你点击最后一列时什么都不会发生。非常感谢您的帮助。
$('#students tbody').on('click', 'tr.details-control', function() {
alert('click');
});

<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<table id="students" class="table table-bordered table-striped table-hover">
<thead>
<tr>
<th>1</th>
<th>2</th>
<th>....</th>
<th>Last</th>
</tr>
</thead>
<tbody>
<tr class="details-control">
<td>First</td>
<td>Second</td>
<td>......</td>
<td>No Alert</td>
</tr>
<tr class="details-control">
<td>First</td>
<td>Second</td>
<td>......</td>
<td>No Alert</td>
</tr>
</tbody>
</table>
&#13;
答案 0 :(得分:1)
添加:
$('td:last-child').click(function( event ) {
event.preventDefault();
});
答案 1 :(得分:1)
您可以将事件添加到td
元素中:
$('#students tbody').on('click', 'tr.details-control td:not(:last)', function() {
alert('click');
});
答案 2 :(得分:1)
需要将:not()
与:last-child
选择器一起使用,如下所示: -
$('#students tbody').on('click', 'tr.details-control td:not(:last-child)', function() {
alert('click');
});
工作示例: -
$('#students tbody').on('click', 'tr.details-control td:not(:last-child)', function() {
alert('click');
});
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<table id="students" class="table table-bordered table-striped table-hover">
<thead>
<tr>
<th>1</th>
<th>2</th>
<th>....</th>
<th>Last</th>
</tr>
</thead>
<tbody>
<tr class="details-control">
<td>First</td>
<td>Second</td>
<td>......</td>
<td>No Alert</td>
</tr>
<tr class="details-control">
<td>First</td>
<td>Second</td>
<td>......</td>
<td>No Alert</td>
</tr>
</tbody>
</table>
答案 3 :(得分:1)
请检查以下代码。
$('tbody').on('click', 'tr.details-control td:not(:last-child)', function() {
console.log('click');
});
答案 4 :(得分:0)
$(function(){
$('table').on('click','td:not(:last-child)',function(){
alert('hi')
})
})
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
</head>
<body>
<table class="table table-bordered table-striped table-hover">
<thead>
<tr>
<th>1</th>
<th>2</th>
<th>....</th>
<th>Last</th>
</tr>
</thead>
<tbody>
<tr class="details-control">
<td>First</td>
<td>Second</td>
<td>......</td>
<td>No Alert</td>
</tr>
<tr class="details-control">
<td>First</td>
<td>Second</td>
<td>......</td>
<td>No Alert</td>
</tr>
</tbody>
</table>
</body>
</html>
答案 5 :(得分:0)
您可以使用
$('#students tr.details-control').click(function(e) {
if($(this).context.rowIndex == $('#students tr').length -1){
e.preventDefault();
}else
alert('click');
});