我可以使用window.open()
打开包含内容的新标签页:
但是如何在新标签中加载javascript文件(带有src属性的脚本标记)?我希望标签的结果html看起来像这样:
<html>
<head></head>
<body>
<script src="http://www.example.com/example.js"></script>
<p>Your content here</p>
</body>
</html>
将代码直接添加到&#34; toNewWindow&#34; div标签不起作用,因为它当然会立即加载原始标签中的js文件..
谢谢!