2012-11-20 177 views
0

我有這張表我希望當我點擊一個表格行中的鏈接做一個重定向到另一個頁面的數據將被髮送到新的頁面,可以幫助我我還沒有發現如何開始將數據從一個表發送到另一個頁面

我真的堅持 碼錶

<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> 

回答

0

您可以在下一頁使用隱藏字段將數據存儲在下一頁上。

+0

這是一個答案嗎? –

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

相關問題