我正在为我的问题寻找一个独特的解决方案。我希望通过 1 个 onclick 提交 2 个事件。大多数答案涉及创建 function() 但我的部分功能涉及使用 php 循环。
目前此代码仅执行第二个事件。相反,如果我切换事件,则会发生另一个事件。基本上无论哪个事件最后都会执行。
if($result){
if(mysql_affected_rows() != 0){
while($row = mysql_fetch_array($result)){
echo "<table>";
echo "<tr style='cursor: pointer' onclick=\"document.location = 'test.php?airport_id=" . $row['id'] . "'; document['myform'].submit(); return false; \";>";
echo "<td width=100 align=left><font color=#FFFFFF>" . $row['ident'] . "</font></td>";
您有什么建议作为解决方案?