作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
$(document).ready(function(){
$(".item_delete").easyconfirm({locale: {
title: 'Select Yes or No',
text: 'Do you really want to delete this product?',
button: ['No','Yes']
}});
$(".item_delete").click(function(){
$(location).attr('href',$(this).attr("href"));
});
});
上面的代码是我想要运行的代码,但它不适用于多个链接,可能是因为代码无法确定选择哪个 HREF。
<a href="<?php echo "index.php?module=account&del_product=".$row['product_code']; ?>" class="item_delete ui-icon ui-icon-trash"></a>
如果链接有如下多个 href,jquery 如何检测我点击的特定链接?
<a href="index.php?module=account&del_product=1"></a>
<a href="index.php?module=account&del_product=2"></a>
<a href="index.php?module=account&del_product=3"></a>
<a href="index.php?module=account&del_product=4"></a>
<a href="index.php?module=account&del_product=5"></a>
<a href="index.php?module=account&del_product=6"></a>
感谢您的合作...
顺便说一下,我正在为 jQuery 使用这个“简单确认对话框”插件 - http://projectshadowlight.org/jquery-easy-confirm-dialog/
最佳答案
使用$(this)可以得到当前点击的超链接的href
$("a.item_delete").on("click", function(){
console.log($(this).attr("href"));
});
关于javascript - 如何为每个超链接检测某个 HREF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10021854/
我是一名优秀的程序员,十分优秀!