作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 how to make a whole row in a table clickable as a link? 找到了我的第一个答案,但现在有一个新问题:
使用
<tbody>
<tr class='clickable-row' data-href='url://link-for-first-row/'>
<td>Blah Blah</td>
<td>1234567</td>
<td>£158,000</td>
</tr>
<tr class='clickable-row' data-href='url://some-other-link/'>
<td>More money</td>
<td>1234567</td>
<td><a href="url://somewhere-else-than-the-row">£800,000</a></td>
</tr>
</tbody>
和
jQuery(document).ready(function($) {
$(".clickable-row").click(function() {
window.document.location = $(this).data("href");
});
});
导致我在使用指向“url://somewhere-else-than-the-row”的最后一个链接时遇到麻烦,尤其是当我使用带有 method="delete"属性的链接时,其中“Are你确定?”弹出,但是,我不想让 window.location
运行。那么如何从 <a>
引用中排除对 window.document.location
元素的点击?
最佳答案
javascript 中的事件向上传播 dom 层次结构。你可以在这里阅读更多相关信息:What is event bubbling and capturing?
至于您的问题,您可能需要查看 jquery 的 event.stopPropagation,以防止单击事件向上传播 dom 并触发超过 1 个事件。见 http://www.w3schools.com/jquery/event_stoppropagation.asp
代码示例:
<tbody>
<tr class='clickable' data-href='url://link-for-first-row/'>
<td>Blah Blah</td>
<td>1234567</td>
<td>£158,000</td>
</tr>
<tr class='clickable' data-href='url://some-other-link/'>
<td>More money</td>
<td>1234567</td>
<td><span class="clickable" data-href="url://somewhere-else-than-the-row">£800,000</span></td>
</tr>
jQuery(document).ready(function($) {
$(".clickable-row").click(function(event) {
event.stopPropagation();
window.document.location = $(this).data("href");
});
});
我已对您的代码添加了 2 处更改:
<a>
标签,而是使用了带有“可点击”类的 <span>
标签关于javascript - 如何从点击 javascript 中的一行中排除 <a> 标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35254335/
我是一名优秀的程序员,十分优秀!