将数据从一个表发送到另一个页

时间:2012-11-20 16:30:36

标签: php javascript jquery html

当我点击表格行中的一个链接重定向到另一个页面时,我想要这个表格,数据将被发送到新页面,这可以帮助我,我还没有找到如何开始

我真的被困住了 代码表

<table cellpadding="0" cellspacing="0" border="0" class="display" id="example">
<thead>
    <tr>            


        <th>Date</th>
        <th>provider</th>
        <th>CI</th>
        <th>CELL</th>
        <th>BSC</th>
        <th>Commentaire</th>
        <th>nbr</th>
        <th>Type</th>
        <th><img src="{{ asset('image/Modify.png') }}" ALIGN="CENTER"/></th>
        <th><img src="{{ asset('image/Info.png') }}" ALIGN="CENTER"/></th>
        <th><img src="{{ asset('image/Male.png') }}" ALIGN="CENTER"/></th>
        <th>type_alertes</th>




    </tr>
</thead>
<tbody>




         <div class="textbox">
        <h2> Information KPI dégradées</h2>

            <div class="textbox_content" id="kpi_dégrades">
 {% for liste in listes %}

    <tr class="gradeU">
    <td>{{ liste.DAT }} </td>
    <td>{{ liste.PROVIDER}} </td>
    <td>{{ liste.CI}} </td>
    <td>{{ liste.CELL}} </td>
    <td>{{ liste.BSC}}</td>
    <td>{{ liste.Cmts}}</td>
    <td >{{ liste.nbr}}</td>
    <td>{{ liste.TYPE}}</td>
    <td><a class="edit" href="">Edit</a></td>
    <td onclick="getInfo('{{ liste.CELL}}')">Information KPI dégradés</td>
    <td>{{ liste.user_name}}</td>
    <td>{{ liste.type_alertes}}</td>



</tr>


{% endfor %}
        </div>
        </div>

</tbody>

3 个答案:

答案 0 :(得分:0)

使用GET变量查找rowID。

http://example.com/page.php?rowID=xx

在主表中有每行的链接。

答案 1 :(得分:0)

您可以使用下一页上的隐藏字段将数据存储在下一页。

答案 2 :(得分:0)

<tr onclick="window.location="newPageLocation?value = this.innerHTML">  
    <th>Date</th>
    <th>provider</th>
    <th>CI</th>
    <th>CELL</th>
    <th>BSC</th>
    <th>Commentaire</th>
    <th>nbr</th>
    <th>Type</th>
    <th><img src="{{ asset('image/Modify.png') }}" ALIGN="CENTER"/></th>
    <th><img src="{{ asset('image/Info.png') }}" ALIGN="CENTER"/></th>
    <th><img src="{{ asset('image/Male.png') }}" ALIGN="CENTER"/></th>
    <th>type_alertes</th>    

在下一页 使用javascript从td获取值