加载 jQuery 对话框更改浏览器视口焦点

发布于 2024-07-25 09:03:02 字数 206 浏览 8 评论 0原文

我正在加载一个 jQuery UI 窗口,从页面顶部向下滚动几次。 当它打开时,浏览器会将其位置重置到页面顶部。

如果在对话框加载之前有帮助,我将在页面中插入一些 HTML(对话框的 html)。

有谁知道如何阻止这个?

编辑问题的答案猜测了我的问题是什么并解决了它。 正在使用哈希标签调用链接。

I am loading a jQuery UI window a few scrolls down from the top of the page. When it opens the Browser resets it's position to the top of the page.

If it helps just prior to the dialog loading I am inserting some HTML into the page (html for the dialog).

Does anyone know how to stop this?

Edit The answer on the question guessed what my problem was and solved it. Was invoking the link using the hash tag.

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

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

发布评论

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

评论(1

物价感观 2024-08-01 09:03:18

如果您通过 标记调用此方法,请务必在该事件上阻止Default。 否则,它会在单击时将您返回到页面顶部。

$("a.myWindow").click(function(event){
  event.preventDefault();
  /* Show dialog */
});

If you're invoking this via the <a href='#'> tag, be sure to preventDefault on the event. Otherwise it will return you to the top of the page onClick.

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