导致页面从 iframe 中加载的 php 重新加载

发布于 2024-11-17 05:04:23 字数 542 浏览 1 评论 0原文

我从首页在 iframe 中加载 php。该 php 尝试使用此代码重新加载主页中的 div。

<script type="text/javascript">
    $(document).ready(function() {
        $('#tnav').load('loadtree.php');
    });
</script>

顶部页面称为favorites.php。它有一个带有 src=addpages.php 的 iframe。该 addpages 调用 savepages.php。 savepages.php 编写了上面的脚本。所以你有 favorites.php -> addpages.php-> savepages.php。顶部页面 (favorites.php) 中的 div 不会重新加载。该代码确实出现在 savepages.php 的视图源中,但它出现在 iframe 源中。

如何在 favorites.php 中重新加载?看来要重新加载,重新加载脚本应该附加到其他 php 文件之一。我该怎么做?谢谢。

From a top page I load a php in an iframe. That php tries to reload a div in the main page with this code.

<script type="text/javascript">
    $(document).ready(function() {
        $('#tnav').load('loadtree.php');
    });
</script>

The top page is called favorites.php. It has an iframe with src=addpages.php. That addpages calls savepages.php. That savepages.php writes the script above. So you have favorites.php -> addpages.php -> savepages.php. The reload for the div which is in the top page (favorites.php) does not happen. The code does appear in the view source for the savepages.php but it appears in the iframe source.

How do I get the reload to happen in the favorites.php? It seems that for the reload to happen the reload script should be appended to one of the other php files. How do I do that? Thanks.

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

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

发布评论

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

评论(1

请你别敷衍 2024-11-24 05:04:23

您正在访问 iframe 内的 DOM。

请参阅此答案以了解一种执行您想要的操作的方法:

Run JQuery in另一个框架的上下文

You're accessing the DOM inside the iframe.

See this answer to see one way to do what you want:

Run JQuery in the context of another frame

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