如何防止 ajax 请求的锚标记转到页面顶部?

发布于 2024-10-15 11:05:46 字数 265 浏览 3 评论 0原文

这似乎是一个愚蠢的问题,但我无法弄清楚。我的页面上有一些锚标记仅执行 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 技术交流群。

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

发布评论

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

评论(3

窝囊感情。 2024-10-22 11:05:46

HTML

<a href="javascript:void(0);" id="theLink" onclick="SomeFunction();">Blah</a>

JS

//jQuery
$('#theLink').click(function(){
    doSomething();
});

//Regular JS
document.getElementById("theLink").onclick = doSomething;

JSFiddle

http:// jsfiddle.net/kSxrK/

HTML

<a href="javascript:void(0);" id="theLink" onclick="SomeFunction();">Blah</a>

JS

//jQuery
$('#theLink').click(function(){
    doSomething();
});

//Regular JS
document.getElementById("theLink").onclick = doSomething;

JSFiddle

http://jsfiddle.net/kSxrK/

维持三分热 2024-10-22 11:05:46

指定一个不存在的锚点,例如 Blah

Specify a non existing anchor such as <a href="#nogo" onclick="SomeFunction();">Blah</a>

宛菡 2024-10-22 11:05:46

return false 添加到 SomeFunction() 的最后:)

var SomeFunction = function(){
    //AJAX MAGIC
    return false;
}

Add return false to your SomeFunction() to the very end :)

var SomeFunction = function(){
    //AJAX MAGIC
    return false;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文