私はこのようなデータを持つテーブルがある:jqueryの、親要素のonclick = window.locationのを防ぐ
<table>
<tr onclick="window.location='download.php?id=1'">
<td>Program 1<br/>Short Description 1 (<a onclick="$.popup.show('Install Instructions', 'Instructions pulled from DB here')">Instructions</a>)</td>
<td>Added by user and date/time here<td>
<td>Filesize here<td>
<td><a href="edit.php?id=1">Edit</a> - <a href="delete.php?id=1">Delete</a><td>
</tr>
(repeat TRs for more programs pulled from DB)
</table>
私がいる問題があります(取扱説明書)のリンクをクリックしたときに、それがなければならないこと指示があるウィンドウをポップアップします。それはしますが、TRのonclickも起動します。だから私は分裂のためのポップアップを取得し、それはdownload.phpに行く。
TRのオンクリックを放つのを防ぐことができますか? jqueryを使用することをお勧めしますが、私はプレーンなJavaScriptソリューションも気にしません。
私はそれが16分続いたことに驚いています。 – cgp
ありがとう、これは完全に動作します。 – Samutz