首頁 > web前端 > js教程 > 一個簡單的動態載入js和css的jquery程式碼_jquery

一個簡單的動態載入js和css的jquery程式碼_jquery

WBOY
發布: 2016-05-16 16:38:04
原創
1114 人瀏覽過

一個簡單的動態載入js和css的jquery程式碼,用於在產生頁面時透過js函數載入一些共通的js和css檔案。

//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 < 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 &#63; "link" : "script"; 
var attr = isCSS &#63; " type='text/css' rel='stylesheet' " : " type='text/javascript' "; 
var link = (isCSS &#63; "href" : "src") + "='" + $.includePath + name + "'"; 
if ($(tag + "[" + link + "]").length == 0) $("head").prepend("<" + tag + attr + link + "></" + 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文件,就可以達到目的。
注意:
1.在html5中,

最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板