禁用与原型观察方法的链接

发布于 2024-08-04 02:26:54 字数 442 浏览 7 评论 0原文

我想创建一个像这样的链接:

<a href="http://example.com">text</a>

并替换行为,以便链接在单击时使用 Ajax 下载内容。

对我来说重要的是不要替换 href 属性(因此复制链接仍然有效)。

一种解决方案是:

$('link').onclick = function() { return false; };

但我想使用 .observe 方法。但这不起作用:(

$('link').observe('click', function() { return false; });

这是很合逻辑的)。

关于如何实现这一目标有什么想法吗?

谢谢。

I want to create a link like this:

<a href="http://example.com">text</a>

and replace the behavior so that the link downloads the content with Ajax instead when clicking.

It is important for me not to replace the href attribute (so copying the link still works).

One solution would be to do:

$('link').onclick = function() { return false; };

but I would like to use the .observe method. But this doesn't work:

$('link').observe('click', function() { return false; });

(which is quite logical).

Any ideas on how I could achieve this?

Thanks.

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

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

发布评论

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

评论(2

ペ泪落弦音 2024-08-11 02:26:54

您必须使用事件对象通过原型来实现此目的。

$('link').observe('click', function(event) { event.stop() });

You have to use the event object to achieve this with prototype.

$('link').observe('click', function(event) { event.stop() });
禾厶谷欠 2024-08-11 02:26:54

$('link').observe('click', function(e) { Event.stop(e); });

$('link').observe('click', function(e) { e.stop(); });

$('link').observe('click', Event.stop);

$('link').observe('click', function(e) { Event.stop(e); });

or

$('link').observe('click', function(e) { e.stop(); });

or

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