带转发(和事件?)的 Jquery 弹出窗口/模态框

发布于 2024-11-27 18:11:22 字数 754 浏览 0 评论 0原文

我希望任何人都可以帮助我...

index.php (http://jsbin.com/elocek)

<script type="text/javascript">
$(document).ready(function() { 
    $('.open').popupWindow({ 
    windowURL:'popup.php', 
    windowName:'external' 
    });
 });
</script>

popup.php (http://jsbin.com/agepog)

<script type="text/javascript"> 
$(document).ready(function() { 

    $('.close').click(function() {
        window.close();
    });

    });
</script>

这样你就可以看到 2 个文件,即“index.php”只是整个窗口中的一个片段,但你可以看到 jquery 等。我的问题是我会打开一个弹出/模式框,无论什么 - 看到新窗口并想重新加载/刷新/替换主窗口(index.php)如果我关闭弹出/模态框...这可能吗?

index.php 有一些额外的变量 eq index.php?site=news&text=....

(抱歉我的英语不好)

i hope anybody can help me ...

index.php (http://jsbin.com/elocek)

<script type="text/javascript">
$(document).ready(function() { 
    $('.open').popupWindow({ 
    windowURL:'popup.php', 
    windowName:'external' 
    });
 });
</script>

popup.php (http://jsbin.com/agepog)

<script type="text/javascript"> 
$(document).ready(function() { 

    $('.close').click(function() {
        window.close();
    });

    });
</script>

so you can see 2 files, the "index.php" is only a snippet from the whole one but you can see the jquery etc. my problem is i would open a popup/modal-box whatever - see the new window and would like to reload/refresh/replace the mainwindow (index.php) if i close the popup/modal-box ... is this possible?

the index.php has some additional vars e.q. index.php?site=news&text=....

(sorry for my bad english)

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

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

发布评论

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

评论(1

禾厶谷欠 2024-12-04 18:11:22

试试这个

$(document).ready(function() { 

    $('.close').click(function() {
        window.opener.location.reload(true);
        window.close();
    });

    });

Try this

$(document).ready(function() { 

    $('.close').click(function() {
        window.opener.location.reload(true);
        window.close();
    });

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