Dynamically loading an external JavaScript or CSS file > script

본문 바로가기
사이트 내 전체검색

script

Dynamically loading an external JavaScript or CSS file

페이지 정보

작성자 서방님 댓글 0건 조회 301회 작성일 15-06-11 16:26

본문

출처 : http://www.javascriptkit.com/javatutors/loadjavascriptcss.shtml


<script type="text/javascript">

<!--

function loadjscssfile(filename, filetype){

if (filetype=="js"){

//if filename is a external JavaScript file

var fileref=document.createElement('script')

fileref.setAttribute("type","text/javascript")

fileref.setAttribute("src", filename)

}

else if (filetype=="css"){

//if filename is an external CSS file

var fileref=document.createElement("link")

fileref.setAttribute("rel", "stylesheet")

fileref.setAttribute("type", "text/css")

fileref.setAttribute("href", filename)

}

if (typeof fileref!="undefined")

document.getElementsByTagName("head")[0].appendChild(fileref)

}


loadjscssfile("myscript.js", "js") //dynamically load and add this .js file

loadjscssfile("javascript.php", "js") //dynamically load "javascript.php" as a JavaScript file

loadjscssfile("mystyle.css", "css") ////dynamically load and add this .css file

//-->

</script>


댓글목록

등록된 댓글이 없습니다.

회원로그인

접속자집계

오늘
78
어제
190
최대
1,347
전체
167,486
Latest Crypto Fear & Greed Index

그누보드5
Copyright © 서방님.kr All rights reserved.