admin管理员组文章数量:1345112
I've done some digging and been unable to find a solution to this little problem. I have a table where I've made each row clickable using:
<tr class="clickable" onclick="window.document.location='$link';">
I'd like to make this work for all but the last column in the table but all the solutions I've found so far involve jQuery. Is there a way of "cancelling" the row onclick event for one column?
TIA
I've done some digging and been unable to find a solution to this little problem. I have a table where I've made each row clickable using:
<tr class="clickable" onclick="window.document.location='$link';">
I'd like to make this work for all but the last column in the table but all the solutions I've found so far involve jQuery. Is there a way of "cancelling" the row onclick event for one column?
TIA
Share Improve this question asked Dec 10, 2013 at 12:15 user3086778user3086778 331 silver badge3 bronze badges 3- 4 why dont you simply remove the onclick from this tr ? – Sunil Verma Commented Dec 10, 2013 at 12:18
- I'd hoped to make the entire row clickable except the last column and using onclick in <tr> rather than a separate one in each <td> seems a neater solution. – user3086778 Commented Dec 10, 2013 at 12:34
- try using adding onclick="return false" in last td – Sunil Verma Commented Dec 10, 2013 at 12:36
3 Answers
Reset to default 11Here is the code - http://jsbin./iLISUDu/2/
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
<table>
<tr onclick='window.location.href="google.";'>
<td>Hello</td>
<td>We are cells</td>
<td onclick='event.stopPropagation();return false;'>Click Me</td>
</tr>
</table>
</body>
</html>
try
<td onclick="(function(e){e.preventDefault();})">A</td>
Click events can be cancelled by returning false from the handler event.
本文标签: javascriptCancel onclick event for one column in tableStack Overflow
版权声明:本文标题:javascript - Cancel onclick event for one column in table - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743794985a2540262.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论