我正在编写一个假设跨域工作的脚本。我尝试从另一个域中包含一个脚本,然后让该脚本包含来自同一域的其他脚本
示例:域1 - www.mydomain.com
<html>
<head>
<script type="text/javascript" src="http://www.example.com/app.js"></script>
</head>
</html>
示例App JS
var imported = document.createElement('script');
imported.src = window.location.host + 'config.js';
document.head.appendChild(imported);
var imported = document.createElement('script');
imported.src = window.location.host + 'stuff.js';
document.head.appendChild(imported);
问题是window.location.host提供脚本已下载到的域:www.mydomain.com。我想要脚本当前所在的域,在这个例子中是www.example.com?
可以这样做吗?请不要JQuery。
答案 0 :(得分:0)
这是一种新的浏览器的替代方法,即使使用dom-adder注入的脚本也可以使用,有时这些脚本不是getElementsByTagName(“script”)集合中的最后一个脚本:
(function(){ // script filename setter, leaves window.__filename set with active script URL.
if(self.attachEvent){
function fn(e,u){self.__filename=u;}
attachEvent("onerror",fn);
setTimeout(function(){detachEvent("onerror", fn)},20);
eval("gehjkrgh3489c()");
}else{
Object.defineProperty( window, "__filename", { configurable: true, get:function __filename(){
try{document.s0m3741ng()}catch(y){
return "http://" +
String(y.fileName || y.file || y.stack || y + '')
.split(/:\d+:\d+/)[0].split("http://")[1];
}
}})//end __filename
}//end if old IE?
}());
更新:增加了更全面的支持: 测试IE9(s + q),IE9测试为IE8(s + q),FF,Ch
我不知道有什么不同的方式,除了手动嗅探脚本标签.SRC以匹配硬编码的字符串,哎呀。
快速演示:http://danml.com/pub/getfilenamedemo2.html 链接脚本:http://danml.com/js/filename2.js
答案 1 :(得分:0)
您可以尝试
if (document.currentScript && document.currentScript.src) {
var uri = new URL(document.currentScript.src);
includeJsFile(uri.origin + '/static/script.js');
}
请注意document.currentScript在IE上不起作用。
答案 2 :(得分:-1)
再次阅读你的问题,我只想问:
为什么不相对于那个js那样做,说:
imported.src = 'config.js';
它会导入config.js,假设是app.js的兄弟
关于我为错误道歉的评论没有理解这个问题。