使用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 = "link" : "script"; >var attr = isCSS ? " type='text/css ' rel='stylesheet' " : " language='javascript' type='text/javascript' ";
var link = (isCSS ? "href" : " src") "='" $.include路徑名" '";
if ($(tag "[" link "]").length == 0) document.write("");
}
}
});
//使用方法
$.includePath = 'http://hi.baidu.com/javascript/'; $.include( ['json2.js', 'jquery.tree.js', 'jquery.tree.css']);