带有“书签”的 iframe没有主浏览器跳转?

发布于 2024-11-25 16:40:00 字数 532 浏览 0 评论 0原文

我的主页上有几个 iframe,每个 iframe 都是 src=""。我设置了 jquery,这样当我单击按钮时,相关 iframe 的 src 就会填充为 website.com/#title1。

然而,我遇到的问题是,当 iframe 的浏览器窗口跳转到适当的行时,主浏览器会跳转到 iframe。当主浏览器忽略跳转时,如何让 iframe 完成“书签”的工作?

我已经阅读了前两个答案,但我不确定如何实现它。

我的 jquery 代码:

$("button.help_popup_button").click(function(e) {
    e.preventDefault();
    $("iframe", "div#help_popup_" + this.value).attr({
            src : 'https://docs.djangoproject.com/en/dev/topics/templates/#filters',
        });
});

我尝试过,但主浏览器仍然跳动

I have several iframes on my main page each of which are src="". I have jquery set up such that when a I click a button the src for the related iframe fills up to say website.com/#title1.

However, the problem I'm having is that when the iframe's browser window jumps to the appropriate line, the main browser jumps to the iframe. How can I have the iframe do its job with the "bookmark" while the main browser ignores the jump?

I've read the first 2 answers, but I'm kind of not sure how to implement it.

my jquery code:

$("button.help_popup_button").click(function(e) {
    e.preventDefault();
    $("iframe", "div#help_popup_" + this.value).attr({
            src : 'https://docs.djangoproject.com/en/dev/topics/templates/#filters',
        });
});

I tried that but the main browser still jumped

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

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

发布评论

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

评论(1

自由范儿 2024-12-02 16:40:00
return false
/* - or - */
event.preventDefault();
return false
/* - or - */
event.preventDefault();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文