您好,欢迎访问一九零五行业门户网

如何使用jquery动态加载js,css文件实现代码_jquery

使用jquery动态加载js,css文件
复制代码 代码如下:
$.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' : language='javascript' type='text/javascript' ;
var link = (iscss ? href : src) + =' + $.includepath + name + ';
if ($(tag + [ + link + ]).length == 0) document.write( + tag + >);
}
}
});
//使用方法
$.includepath = 'http://hi.baidu.com/javascript/';
$.include(['json2.js', 'jquery.tree.js', 'jquery.tree.css']);
其它类似信息

推荐信息