我使用這個代碼,以顯示錶隱藏行永久表
<table>
<tr>
<th style="height: 25px">NAME</th>
<th style="height: 25px">EMAIL</th>
<th style="height: 25px">CELL NO</th>
<th style="height: 25px">CITY</th>
<th>Hide Candidate</th>
</tr>
</table>
<?php
while($data_set1 = mysql_fetch_array($result))
{
echo "<tr>";
echo "<td>{$data_set1['ename']}</td>";
echo "<td>{$data_set1['eemail']}</td>";
echo "<td>{$data_set1['ecell']}</td>";
echo "<td>{$data_set1['ecity']}</td>";
echo "<td><input type=\"checkbox\" name=\"hide_cand\" id=\"hide_cand\" onclick=\" return hideRow(this)\"/></td>";
\"/></td>";
echo "</tr>";
}
?>
,並使用該JavaScript我可以暫時隱藏表中的行,如何permanantly隱藏它,當正裝表
頁function hideRow(checkbox)
{
if(confirm('This action can not be recovered, are you sure you want to HIDE this Candidate? '))
{
checkbox.parentNode.parentNode.style.display = "none";
return true;
}
return false;
}
你總是可以......在'while()'循環中不輸出''?也許在行上設置一個'style =「display:none」'?你有沒有想過這個? – Bojangles
它實際上可以被恢復,因爲我可以通過開發人員工具或螢火蟲編輯HTML元素 –
我想隱藏行只有當用戶想要它,所以我不能使用style =「display:none」 – raj