- 时间:2022-04-16 14:08 编辑: 来源: 阅读:
- 扫一扫,手机访问
摘要:javascript同步Import,同步调用外部js的方法
在线演示地址[url=http://www.1sucai.cn/jslib/Import/a.html]http://www.1sucai.cn/jslib/Import/a.html[/url]
主要功能代码import.js
<!--
(function(){
if(typeof window._Import != "undefined") return; //防止多次加载
function _Import(uri, x) {
var f = arguments.callee.caller;
if(typeof f == "function") {
var IsIE = (navigator.userAgent.indexOf("MSIE") == -1)? false : true;
var scriptEle = document.getElementsByTagName("head")[0].appendChild(document.createElement("script"));
scriptEle.type = "text/javascript";
scriptEle.src = uri;
if (x)
{
if (IsIE) {
scriptEle.onreadystatechange = x;
}
else {
scriptEle.onload = x;
}
}
}
}
window._Import = _Import;
})();
//-->
远程测试a.js
var a = "编程素材网www.1sucai.cn===";
具体调用代码
<html>
<head>
<title>-</title>
</head>
<body>
<script type="text/javascript" src="Import.js"></script>
<script type="text/javascript">
(function(){
function callback()
{
var IsIE = (navigator.userAgent.indexOf("MSIE") == -1)? false : true;
if (IsIE)
{
if(/loaded/.test(this.readyState))
{
alert(a);
}
}
else
{
alert(a);
}
}
_Import("http://www.1sucai.cn/jslib/Import/a.js", callback)
})()
</script>
</body></html>