我有一张这样的 tr 风格的桌子:
echo "<tr style=\"background-color: $farbe;\" onmouseover=\"this.style.cursor='pointer';this.style.backgroundColor='#87CEFF';\"onclick=\"window.location='overview.php?adrnr=" . $inhalt["AdrNr"] . "'\" onMouseOut=\"this.style.backgroundColor='$farbe';\">\n";
我想在其中一个看起来像这样的元素中有一个按钮
<td> <input type = "button" value = "Bearbeiten" onClick="self.location.href=' changeadress.php'" >
问题是,一旦我按下按钮,我就会进入 overview.php,因为 td 得到了解决这个问题的任何方法。