0

我正在尝试使用 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;       
    });                                     
});

任何有关如何获得与每一行相关联的值的帮助将不胜感激。

4

1 回答 1

0

给你的while循环

while($row) {
// The uniquely value to represent the link to each row is
// <a href ='rideinfo?PostID=$row[6]'></a>  
echo "          
    <tr id='<?php echo $row[6];?>'>
        <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喜欢

$("#table_id tbody tr").on('click',function() {   
    var id = $(this).attr('id');
    document.location.href = "?PostID=" + id;       
}); 

on替换live因为它已被弃用。

而不是在额外的'td'上放置一个链接并将链接提供给您想要的页面,例如

<td><a href="my_url?postId=<?php echo $row[6];?>">LINK</a></td>
于 2013-05-09T05:41:23.920 回答