禁用与原型观察方法的链接
我想创建一个像这样的链接:
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须使用事件对象通过原型来实现此目的。
You have to use the event object to achieve this with prototype.
$('link').observe('click', function(e) { Event.stop(e); });
或
或
$('link').observe('click', function(e) { Event.stop(e); });
or
or