从子窗口获取数据

发布于 2024-11-14 14:07:43 字数 995 浏览 2 评论 0原文

可能的重复:
从子窗口获取数据

我正在开发一个项目并遇到了问题。请查看以下代码。

<iframe name="stus" id="stus" style="display:none;"></iframe><div id="posting"></div>

<form name="water" id="water" method="post"  autocomplete="off" action="components/com_pocketsea/assets/new/water.php" target="stus">
<input text="text" id="newwatermark" name="newwatermark"><input type="submit"></form>

water.php 的代码是

<?php $tt = $_POST['newwatermark'];  ?>
    <script type="text/javascript" src="../../js2/jquery.min.js" ></script>  
    <script>        $(document).ready(function(){ $("#posting", window.parent.document).html("<?php echo $tt; ?>").fadeIn('slow'); }); </script>

该脚本不起作用。 Water.php 未加载到父级中。这在自定义中效果很好,但在 joomla 中则不然。请帮忙。

Possible Duplicate:
getting data from child window

I am working on a project and have encountered a problem. Please view the following code.

<iframe name="stus" id="stus" style="display:none;"></iframe><div id="posting"></div>

<form name="water" id="water" method="post"  autocomplete="off" action="components/com_pocketsea/assets/new/water.php" target="stus">
<input text="text" id="newwatermark" name="newwatermark"><input type="submit"></form>

The code for water.php is

<?php $tt = $_POST['newwatermark'];  ?>
    <script type="text/javascript" src="../../js2/jquery.min.js" ></script>  
    <script>        $(document).ready(function(){ $("#posting", window.parent.document).html("<?php echo $tt; ?>").fadeIn('slow'); }); </script>

The script is not working. Water.php is not being loaded in parent. This works well in custom but not in joomla. plz help.

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

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

发布评论

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

评论(1

姐不稀罕 2024-11-21 14:07:43

您可以使用 opener 方法访问父窗口元素...

 $('#myform').submit(function(){     
       opener.document.getElementById('parentWindowElem').innerHTML = document.getElementById ('childWindowElem').value;    
}); 

you can use opener method to access parent window element...

 $('#myform').submit(function(){     
       opener.document.getElementById('parentWindowElem').innerHTML = document.getElementById ('childWindowElem').value;    
}); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文