如何防止 ajax 请求的锚标记转到页面顶部?
这似乎是一个愚蠢的问题,但我无法弄清楚。我的页面上有一些锚标记仅执行 ajax 功能,除了触发 javascript 之外没有任何固有用途:
<a href="#" onclick="SomeFunction();">Blah</a>
How do I Prevent Click on this link from all way to the page of the page.它导致了一些恼人的 UI 可用性问题。
This seems like a stupid question, but I can't figure it out. I have some anchor tags on my page that perform ajax functions only, and have no inherent use except for triggering javascript:
<a href="#" onclick="SomeFunction();">Blah</a>
How do I prevent clicking on this link from scrolling all the way to the top of the page. It is causing some annoying UI usability issues.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
HTML
JS
JSFiddle
http:// jsfiddle.net/kSxrK/
HTML
JS
JSFiddle
http://jsfiddle.net/kSxrK/
指定一个不存在的锚点,例如
Blah
Specify a non existing anchor such as
<a href="#nogo" onclick="SomeFunction();">Blah</a>
将
return false
添加到SomeFunction()
的最后:)Add
return false
to yourSomeFunction()
to the very end :)