jQuery 防止锚点点击

发布于 2024-12-27 21:37:00 字数 505 浏览 1 评论 0原文

我试图阻止默认的锚链接和 onclick 事件触发。

这是 HTML 代码:

<a id="mylink" href="http://google.com" 
    onclick="window.location.href='http://google.com.au'; return false;">
Google</a>

我试图使用以下 jQuery 代码来防止发生任何重定向:

$("#mylink").click(function(ev) {
    ev.preventDefault();
    ev.stopPropagation();
}

但它似乎不起作用。该代码仍然调用锚点 onclick 事件并重定向到 http://google.com.au

有任何线索或建议吗?提前致谢。

I'm trying to prevent the default anchor link and onclick event to trigger.

Here's the HTML code:

<a id="mylink" href="http://google.com" 
    onclick="window.location.href='http://google.com.au'; return false;">
Google</a>

I'm trying to prevent any redirects from occurring, using the following jQuery code:

$("#mylink").click(function(ev) {
    ev.preventDefault();
    ev.stopPropagation();
}

But it doesn't seem to work. The code still invokes the anchor onclick event and redirects to http://google.com.au

Any clues or suggestions? Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

手长情犹 2025-01-03 21:37:00

您需要手动清除 onclick,只要它是在before .click() 回调中调用的:

$("#mylink").prop('onclick', null);

You need to clear onclick manually, as long as it is being called before .click() callback:

$("#mylink").prop('onclick', null);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文