gpt4 book ai didi

javascript - 如何为每个超链接检测某个 HREF

转载 作者:行者123 更新时间:2023-11-30 13:21:48 26 4
gpt4 key购买 nike

             $(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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com