gpt4 book ai didi

href 属性中带有 # 的链接的 jQuery 选择器

转载 作者:行者123 更新时间:2023-12-03 21:38:01 26 4
gpt4 key购买 nike

我尝试使用这个 jQuery 选择器:

$("a:has(href*=#)").click(function() {
alert('works');
});

但似乎不起作用。我想选择在 href 属性中具有 anchor 的所有标签(那里有 # 符号)

最佳答案

$("a[href*=#]").click(function(e) {
e.preventDefault();
alert('works');
});

关于href 属性中带有 # 的链接的 jQuery 选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8683116/

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