Heim >Web-Frontend >js-Tutorial >非阻塞动态加载javascript广告实现代码_javascript技巧

非阻塞动态加载javascript广告实现代码_javascript技巧

WBOY
WBOYOriginal
2016-05-16 18:16:061197Durchsuche
复制代码 代码如下:





广告代码最后加载



<script> <BR>//ad("open",'alert("ddd")'); <BR>var JSScript = { <BR>inject:function (htmlId,jsCode){ <BR>var script = document.createElement("script"); <BR>script.text = jsCode; <BR>document.getElementById(htmlId).appendChild(script); <BR>}, <BR>loadeing:function (url,charset,callback){ <BR>var script = document.createElement("script"); <BR>script.src = url; <BR>script.charset = charset; <BR>script.loaded= false; <BR>script.onload = function(){ <BR>script.loaded = true; <BR>callback(); <BR>}; <BR>script.onreadystatechange = function(){ <BR>if(!script.onloadDone && ("loaded"==script.readyState || "complete"==script.readyState)){ <BR>script.onload(); <BR>} <BR>}; <BR>document.getElementsByTagName("head")[0].appendChild(script); <BR>} <BR>} <BR>JSScript.loadeing("http://cbjs.baidu.com/js/s.js","gb2312",initAd) <BR>function initAd(){ <BR>JSScript.inject("open",'BAIDU_CLB_singleFillSlot("72893")'); <BR>} <BR></script>


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn