jQuery SlideDown,隐藏浏览器问题

发布于 2024-09-28 22:31:35 字数 210 浏览 4 评论 0原文

$("#list").slideDown("slow"); //code to slide down the div dag when it is clicked.

它工作正常,但是当我单击标签时,浏览器突然向上滚动到顶部。

所以我必须向下滚动到标签才能查看其内容。

请帮我。

谢谢,

拉吉

$("#list").slideDown("slow"); //code to slide down the div dag when it is clicked.

It is working fine but when I clicked on the tag, the browser is suddenly scrolling up to the top.

So I have to scroll down to the tag to see its contents.

Please help me.

Thanks,

Raj

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

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

发布评论

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

评论(2

倚栏听风 2024-10-05 22:31:35

在点击处理程序中,您需要返回 false 或使用 event.preventDefault();。单击处理程序的示例如下:

$("#element").click(function(event){

  $("#list").slideDown("slow");

  return false;
});

In your click handler, you need to return false or use event.preventDefault();. An example click handler would be:

$("#element").click(function(event){

  $("#list").slideDown("slow");

  return false;
});
山有枢 2024-10-05 22:31:35

如果没有看到更多的 HTML 代码,就不可能确定,但​​当您有类似 之类的内容时,通常会看到这种行为。 # 告诉浏览器转到页面顶部。

Without seeing more of your HTML code it's impossible to be certain, but this behaviour is usually seen when you have something like <a href='#' onclick='.....'>. The # tells the browser to go to the top of the page.

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