加载 jQuery 对话框更改浏览器视口焦点
我正在加载一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您通过
标记调用此方法,请务必在该事件上阻止Default。 否则,它会在单击时将您返回到页面顶部。
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.