这可能很简单,但似乎无法弄明白。使用jquery数据表如何使每行可单击以链接到普通页面?因此,如果有人在任何一行上进行了鼠标搜索,那么整行将会突出显示并且可以点击并链接到我希望它在点击时链接到的任何网址。
答案 0 :(得分:12)
我使用jQuery Datatables plugin的fnDrawCallback
参数来使其工作。这是我的解决方案:
fnDrawCallback: function () {
$('#datatable tbody tr').click(function () {
// get position of the selected row
var position = table.fnGetPosition(this)
// value of the first column (can be hidden)
var id = table.fnGetData(position)[0]
// redirect
document.location.href = '?q=node/6?id=' + id
})
}
希望这会有所帮助。
答案 1 :(得分:9)
使用vanilla <table>
执行此操作非常简单,但我不明白为什么这不适用于jQuery DataTables。
$('#myTableId').on('click', 'tbody > tr > td', function ()
{
// 'this' refers to the current <td>, if you need information out of it
window.open('http://example.com');
});
您可能还希望在那里进行一些hover
事件处理,以便在用户点击一行之前为其提供可视反馈。
答案 2 :(得分:9)
这对我来说是使用行回调。
fnRowCallback: function(nRow, aData, iDisplayIndex, iDisplayIndexFull) {
responsiveHelper.createExpandIcon(nRow);
$(nRow).click(function() {
document.location.href = 'www.google.com';
});
},
答案 3 :(得分:9)
$('#myTable').on( 'click', 'tbody tr', function () {
window.location.href = $(this).data('href');
});
其中#myTable是表的ID,你需要将href放在tr中,如下所示:
<tr data-href="page.php?id=1">
<th>Student ID</th>
<th>Fullname</th>
<th>Email</th>
<th>Phone</th>
<th>Active</th>
</tr>
答案 4 :(得分:3)
您还可以使用DataTables plugins api来创建自定义渲染器。
答案 5 :(得分:0)
答案 6 :(得分:0)
您可以这样做以使行可点击:
<script type="text/javascript">
var oTable;
$(document).ready(function() {
oTable = $('#myTable').dataTable({
"ajax" : "getTable.json",
"fnInitComplete": function ( oSettings ) {
//On click in row, redirect to page Product of ID
$(oTable.fnGetNodes()).click( function () {
var iPos = oTable.fnGetPosition( this );
var aData = oSettings.aoData[ iPos ]._aData;
//redirect
document.location.href = "product?id=" + aData.id;
} );
},
"columns" : [ {
"data" : "id"
}, {
"data" : "date"
}, {
"data" : "status"
}]
});
});
</script>
<table id="myTable" class="display" cellspacing="0" width="100%">
<thead>
<tr>
<th>#</th>
<th>Date</th>
<th>Status</th>
</tr>
</thead>
<tbody></tbody>
</table>
答案 7 :(得分:0)
我认为它会像那样
$('#invoice-table').dataTable({
"fnRowCallback": function (nRow, aData, iDisplayIndex, iDisplayIndexFull) {
var slug = $(nRow).data("slug");
$(nRow).attr("href", "/invoices/" + slug + "/");
$(nRow).css( 'cursor', 'pointer' );
$(nRow).click(function(){
window.location = $(this).attr('href');
return false;
});
}
});
表格就像那样
<tr class="invoice_row" data-slug="{{ invoice.slug }}">
<td>{{ invoice.ref }}</td>
<td>{{ invoice.campaign.name }}</td>
<td>{{ invoice.due_date|date:'d-m-Y' }}</td>
<td>{{ invoice.cost }}</td>
<td>
<span class="label label-danger">Suspended</span>
</td>
</tr>
这与我合作
答案 8 :(得分:0)
**我为此使用了一个简单的解决方案。在tr上添加onclick即可完成。用jquery数据表测试过**
<tr onclick="link(<?php echo $id; ?>)">
function link(id){
location.href = '<?php echo $url ?>'+'/'+id;
}
答案 9 :(得分:-1)
最近我不得不处理点击数据表中的一行。
$(document).ready(function() {
$("#datatable tbody tr").live( 'click',function() {
window.open('http://www.example.com');
} );
} );