这是我的功能
function swipe2() {
window.open ( 'edit.php?no=','newwindow')
}
我的php(我跳过了一些)
for ($i = $start; $i < $end; $i++)
{
if ($i == $total_results) {
break;
}
echo "<tr>";
echo ("<td><img src='edit.jpg' width='20' alt='Edit' title='EDIT DATA' onClick='swipe2();'style='cursor: pointer;'". mysql_result($result, $i, 'no')." ></td>");'
echo '<td><a href="delete.php?no=' . mysql_result($result, $i, 'no') . ' "><img src="delete.jpg" width="20" alt="Delete" title="DELETE DATA"></a></td>';
echo strtoupper('<td>' . mysql_result($result, $i, 'no') . '</td>');
echo strtoupper('<td>' . mysql_result($result, $i, 'CPUname') . '</td>');
}
echo "</tr>";
echo "</table>";
问题是我的功能swipe2()
edit.php?no=
不添加数字。
提前致谢..
请帮忙