我有這張表我希望當我點擊一個表格行中的鏈接做一個重定向到另一個頁面的數據將被髮送到新的頁面,可以幫助我我還沒有發現如何開始將數據從一個表發送到另一個頁面
我真的堅持 碼錶
<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>
這有什麼錯用''link text的價值? – Blazemonger
用'href =「your-other-page.php?rowID = XXX」'添加''? –
這裏需要javascript/jquery,而不是'a'標籤使用'onclick'事件,該事件調用一個獲取所需數據並將其提交給php腳本的函數。 – Naryl