js获取全局变量的方法
程序员文章站
2022-03-09 22:17:33
...
var getGlobal = function(){
if(typeof self !=== 'undefined'{
return self;
}if(typeof window !=== 'undefined'{
return window;
}if(typeof global !=== 'undefined'{
return global
}
throw new Error('unable to locate global object')
};
上一篇: 变量在 PHP7 内部的实现(一)
下一篇: ajax请求数据并渲染页面
推荐阅读