标签: javascript
当我尝试使用window.open打开外部网址时,窗口无法加载资产文件和图像。
window.open
如果我打开xyz.com/test,则窗口会尝试从localhost/css/style.css加载资产文件,而不是真实来源。
xyz.com/test
localhost/css/style.css
如何制作窗口以从真实来源加载其资产文件;
var window = window.open(null,null,'width=200,height=200'); window.document.write(htmlSource);