动态加载js和css的jquery plugin_html/css_WEB-ITnose

一个简单的动态加载js和css的jquery代码,用于在生成页面时通过js函数加载一些共通的js和css文件。 

Java代码  

//how to use the function below:   //$.include(‘file/ajaxa.js’);$.include(‘file/ajaxa.css’);   //or $.includePath  = ‘file/’;$.include([‘ajaxa.js’,’ajaxa.css’]);(only if .js and .css files are in the same directory)   $.extend({       includePath: ”,       include: function(file)       {           var files = typeof file == “string” ? [file] : file;           for (var i = 0; i          {               var name = files[i].replace(/^\s|\s$/g, “”);               var att = name.split(‘.’);               var ext = att[att.length – 1].toLowerCase();               var isCSS = ext == “css”;               var tag = isCSS ? “link” : “script”;               var attr = isCSS ? ” type=’text/css’ rel=’stylesheet’ ” : ” type=’text/javascript’ “;               var link = (isCSS ? “href” : “src”) + “='” + $.includePath + name + “‘”;               if ($(tag + “[” + link + “]”).length == 0) $(“head”).prepend(“” + tag + “>”);           }       }   });   $.include(‘../js/jquery-ui-1.8.21.custom.min.js’);   $.include(‘../css/black-tie/jquery-ui-1.8.21.custom.css’);  
将该函数写入一个common.js文件中,在html中加载该common.js文件,就可以达到目的。该js函数出自以下链接: 
http://www.cnblogs.com/chenjinfa/archive/2009/03/17/1414178.html 
注意: 
1.在html5中,标签已经不支持language属性了,所以我删除了:

Java代码

  1. var attr = isCSS ? ” type=’text/css’ rel=’stylesheet’ ” : ” language=’javascript’ type=’text/javascript’ “;
    中的language=’javascript’
    2.原作者在写入js和css标签时,用的是:

    Java代码

    1. document.write(““);
      但是经过实践,发现document.write()方法会在写入前清除原页面的所有内容,也就相当于覆盖的意思,这样明显达不到我的需要,我需要在加载页面时动态的向页面导入共通的js和css,而不能清除我原页面的其他任何内容,所以查了下api,我改用了:

      Java代码

      1. $(“head”).prepend(““);
        这个方法,$(“head”).prepend()方法的作用是在标签的最前端追加写入内容。

        最后,再补充一个方法,也是通过共通js来实现,应该比上面这个方法更容易理解:

        Java代码

        1. Dynamically loading external JavaScript and CSS files
        2. To load a .js or .css file dynamically, in a nutshell, it means using DOM methods to first create a swanky new “SCRIPT” or “LINK” element, assign it the appropriate attributes, and finally, use element.appendChild() to add the element to the desired location within the document tree. It sounds a lot more fancy than it really is. Lets see how it all comes together:
        3. function loadjscssfile(filename, filetype){
        4. if (filetype==”js”){ //if filename is a external JavaScript file
        5. var fileref=document.createElement(‘script’)
        6. fileref.setAttribute(“type”,”text/javascript”)
        7. fileref.setAttribute(“src”, filename)
        8. }
        9. else if (filetype==”css”){ //if filename is an external CSS file
        10. var fileref=document.createElement(“link”)
        11. fileref.setAttribute(“rel”, “stylesheet”)
        12. fileref.setAttribute(“type”, “text/css”)
        13. fileref.setAttribute(“href”, filename)
        14. }
        15. if (typeof fileref!=”undefined”)
        16. document.getElementsByTagName(“head”)[0].appendChild(fileref)
        17. }
        18. loadjscssfile(“myscript.js”, “js”) //dynamically load and add this .js file
        19. loadjscssfile(“javascript.php”, “js”) //dynamically load “javascript.php” as a JavaScript file
        20. loadjscssfile(“mystyle.css”, “css”) ////dynamically load and add this .css file
        21. 版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。

          发布者:PHP中文网,转转请注明出处:https://www.chuangxiangniao.com/p/3092397.html

(0)
上一篇 2025年3月28日 13:57:05
下一篇 2025年3月28日 13:57:13

AD推荐 黄金广告位招租... 更多推荐

相关推荐

发表回复

登录后才能评论