我正在尝试使用 JQuery 数据表来唯一链接表的每一行。我遇到的问题是如何存储或查找数据表每一行的每个唯一链接。表体是从数据库中动态创建的
echo "
<table id='table_id' class='table table-striped'>
<thead>
. . .
</thead>
<tbody>
";
while($row) {
// The uniquely value to represent the link to each row is
// <a href ='rideinfo?PostID=$row[6]'></a>
echo "
<tr>
<td>$row[1]</td>
<td>$departDate</td>
<td>$departTime</td>
<td>$row[2]</td>
<td>$returnDate</td>
<td>$returnTime</td>
<td>$$row[5]</td>
</tr>
";
$row = $result->fetch_row();
}
jQuery是
$(document).ready(function() {
var oTable = $('#table_id').dataTable( {
"sPaginationType": "bootstrap"
});
$("#table_id tbody tr").live('click',function() {
// I am not sure here how to store and get the id for each row
document.location.href = "?PostID=" + id;
});
});
任何有关如何获得与每一行相关联的值的帮助将不胜感激。