导致页面从 iframe 中加载的 php 重新加载
我从首页在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在访问 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