我创建了以下html:
<table>
<tr>
<td onclick="window.location.href = 'Add.html'">
1
<div onclick="window.location.href = 'Update.html'">
Update me
</div>
</td>
</tr>
</table>
当我点击td时,它会重定向Add.html
。没关系。但是当我点击div时,它也会重定向到Add.html
页面。我想重定向到Update.html
页面。
答案 0 :(得分:2)
<强> DEMO 强>
<table>
<tr>
<td onclick="loadUrl(event,'add.html')">
Add me
<div onclick="loadUrl(event,'update.html')">
Update me
</div>
</td>
</tr>
</table>
<强>的JavaScript 强>
function loadUrl(ev,url)
{
var e = ev || window.event;
alert(url);
// do whatever you want
e.cancelBubble = true;
if (e.stopPropagation) e.stopPropagation();
}