在我的页面上,我有以下代码:
<script type="text/javascript">
if(!window.opener) {
window.open(window.location.href, '_blank');
}
</script>
基本上在一个新窗口中打开'本身',没有一个恒定的循环。
如何在打开的新窗口中添加“附加”Javascript内容,而不是原始内容?
答案 0 :(得分:2)
<script type="text/javascript">
if(!window.opener) {
window.open(window.location.href, '_blank');
} else {
// ...add additional content here...
}
</script>