> 웹 프론트엔드 > JS 튜토리얼 > js 및 css_jquery를 동적으로 로드하기 위한 간단한 jquery 코드

js 및 css_jquery를 동적으로 로드하기 위한 간단한 jquery 코드

WBOY
풀어 주다: 2016-05-16 16:38:04
원래의
1103명이 탐색했습니다.

페이지 생성 시 js 함수를 통해 일부 일반적인 js 및 css 파일을 로드하는 데 사용되는 js 및 css를 동적으로 로드하기 위한 간단한 jquery 코드입니다.

//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 파일에 작성하고 common.js 파일을 html로 로드하여 목표를 달성하세요.
참고:
1. html5에서는

최신 이슈
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿