带转发(和事件?)的 Jquery 弹出窗口/模态框
我希望任何人都可以帮助我...
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个
Try this