欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

如何使用jquery动态加载js,css文件

程序员文章站 2022-03-28 21:05:03
...
如何使用jquery动态加载js,css文件
$.extend({
includePath: ”,
include: function(file) {
var files = typeof file == ”string” ? [file]:file;
for (var i = 0; i < files.length; 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’ ” : ” language=’javascript’ type=’text/javascript’ ”;
var link = (isCSS ? ”href” : ”src”) + ”=’” + $.includePath + name + ”‘”;
if ($(tag + ”[" + link + "]“).length == 0) document.write(“<” + tag + attr + link + ”></” + tag + ”>”);
}
}
});
 
 
//使用方法
$.includePath = ’http://hi.baidu.com/javascript/’;
$.include(['json2.js', 'jquery.tree.js', 'jquery.tree.css']);
相关标签: jquery