作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Bootstrap 和 jQuery 开发一个应用程序,我需要在弹出窗口中显示一个包含两个表的 div。到目前为止,我已经使用了 bootstrap 中的模态插件,但现在我需要在外部 float “小”(~800x600)窗口中显示它,我可以关闭、最小化等。
我一直在寻找如何做到这一点,但只找到了这个与网址一起使用的插件:jquery.popupWindow.js(http://swip.codylindley.com/popupWindowDemo.html但我需要的是显示div的内容(这个想法是以编程方式生成两个表,将其附加到 div,并在外部窗口中显示)
有人可以帮助我吗?提前致谢。
最佳答案
给你一个想法,假设它们是两个窗口 parent.html
和 child.html
在parent.html中:
<script type="text/javascript">
$(document).ready(function () {
var output = "data";
var OpenWindow = window.open("child.html", "mywin", '');
OpenWindow.dataFromParent = output; // dataFromParent is a variable in child.html
OpenWindow.init();
});
</script>
在child.html中:
<script type="text/javascript">
var dataFromParent;
function init() {
document.write(dataFromParent);
}
</script>
关于javascript - 在外部窗口中弹出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28458491/
我是一名优秀的程序员,十分优秀!