重新加载页面以添加内容

时间:2013-10-27 01:09:45

标签: javascript html

在我的页面上,我有以下代码:

<script type="text/javascript">
            if(!window.opener) {
                window.open(window.location.href, '_blank');
            }
        </script>

基本上在一个新窗口中打开'本身',没有一个恒定的循环。
如何在打开的新窗口中添加“附加”Javascript内容,而不是原始内容?

1 个答案:

答案 0 :(得分:2)

<script type="text/javascript">
    if(!window.opener) {
        window.open(window.location.href, '_blank');
    } else {
        // ...add additional content here...
    }
</script>