码迷,mamicode.com
首页 > 其他好文 > 详细

一个小小的加载器的雏形

时间:2014-09-29 12:46:20      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:blog   io   ar   div   on   c   cti   log   html   

<!doctype html>
<html>
  <head></head>
  <body>
    <script>
      function createScript(str,callFunc,callArgument){
        var myScript = document.createElement("script");
        myScript.src = str;
        document.body.appendChild(myScript);
 	if(typeof callArgument === "string" && typeof callFunc === "function"){callFunc(callArgument)}
      }
      createScript(‘a.js‘,createScript,‘c.js‘);
      //createScript(‘c.js‘);
          </script>
  </body>
</html>

  

一个小小的加载器的雏形

标签:blog   io   ar   div   on   c   cti   log   html   

原文地址:http://www.cnblogs.com/qianduanlover/p/3999770.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!