M

필요에 따라 자스/css 불러왔다 내보내기

주말에 제 홈피를 리뉴얼 중 (각 div 로 위아래 부드럽게 이동 하는 한장짜리 로 짜봤는데) 문제가 좀 생겼었습니다.

모든 jQuery 는 제가 직접 짠거라서 간단한데 반응형 jQuery 슬라이더를 넣으니 IE 에서 속도문제가 좀 생기는 것 같더라구요.

그래서 페이지가 아래로 이동하는 경우에는 슬라이더 관련 js 와 css 를 제거하고, 반대로 페이지가 상단위로 와 있는 경우는 블로그 페이지 관련 js 와 css 가 자동제거 되는 방식을 구현하려고 했는데....

힘들게 하나 찾은 자스 소스가....

function createjscssfile(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)
 }
 return fileref
}

function replacejscssfile(oldfilename, newfilename, filetype){
 var targetelement=(filetype=="js")? "script" : (filetype=="css")? "link" : "none" //determine element type to create nodelist using
 var targetattr=(filetype=="js")? "src" : (filetype=="css")? "href" : "none" //determine corresponding attribute to test for
 var allsuspects=document.getElementsByTagName(targetelement)
 for (var i=allsuspects.length; i>=0; i--){ //search backwards within nodelist for matching elements to remove
  if (allsuspects[i] && allsuspects[i].getAttribute(targetattr)!=null && allsuspects[i].getAttribute(targetattr).indexOf(oldfilename)!=-1){
   var newelement=createjscssfile(newfilename, filetype)
   allsuspects[i].parentNode.replaceChild(newelement, allsuspects[i])
  }
 }
}

replacejscssfile("oldscript.js", "newscript.js", "js") //Replace all occurences of "oldscript.js" with "newscript.js"
replacejscssfile("oldstyle.css", "newstyle", "css") //Replace all occurences "oldstyle.css" with "newstyle.css"

푸하하하

이걸 넣으면 페이지가 오히려 더 무거워지는 웃기는 상황발생.

조금더 살펴보니 jQuery 에 .remove !!!!!


$(  ).remove();  //이거 한줄이면 끝!!!!!

흡사한 방법으로 이것도 되네요

$.globalEval(js);


아, jQuery 의 위대함이란!!!! ㅋㅋㅋㅋ
|

댓글 3개

저도 분석해가면서 제이쿼리를 짜내려 가고 싶은데 부럽습니다..
3개월된 퍼블리셔에겐 아직 쫒기에 먼 님이네요 ㅎㅎ;;

잘보구 갑니다~~
jquery 는 신세계죠.ㅎㅎ
Jquery 참 간결하죠 ㅋ
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
13년 전 조회 2,269
13년 전 조회 2,164
13년 전 조회 7,658
13년 전 조회 2,409
13년 전 조회 1,985
13년 전 조회 4,278
13년 전 조회 2,630
13년 전 조회 5,038
13년 전 조회 2,854
13년 전 조회 2,483
13년 전 조회 2,036
13년 전 조회 2,033
13년 전 조회 2,272
13년 전 조회 2,480
13년 전 조회 3,190
13년 전 조회 2,454
13년 전 조회 3,653
13년 전 조회 2,532
13년 전 조회 5,691
13년 전 조회 4,847
13년 전 조회 6,408
13년 전 조회 8,999
13년 전 조회 4,243
13년 전 조회 3,680
13년 전 조회 2,046
13년 전 조회 4,388
13년 전 조회 2,271
13년 전 조회 5,817
13년 전 조회 3,978
13년 전 조회 3,248
13년 전 조회 3,107
13년 전 조회 7,443
13년 전 조회 3,239
13년 전 조회 2,896
13년 전 조회 2,768
13년 전 조회 4,337
13년 전 조회 4,282
13년 전 조회 2,651
13년 전 조회 2,870
13년 전 조회 6,097
13년 전 조회 2,137
13년 전 조회 2,631
13년 전 조회 2,963
13년 전 조회 3,356
13년 전 조회 3,331
13년 전 조회 3,103
13년 전 조회 6,215
13년 전 조회 2,557
13년 전 조회 7,552
13년 전 조회 3,062
13년 전 조회 3,115
13년 전 조회 2,839
13년 전 조회 2,483
13년 전 조회 3,230
13년 전 조회 2,234
13년 전 조회 3,739
13년 전 조회 2,072
13년 전 조회 2,054
13년 전 조회 4,708
13년 전 조회 2,482
13년 전 조회 2,106
13년 전 조회 1,973
13년 전 조회 2,478
13년 전 조회 3,646
13년 전 조회 2,076
13년 전 조회 3,007
13년 전 조회 2,201
13년 전 조회 2,140
13년 전 조회 3,956
13년 전 조회 2,385
13년 전 조회 2,580
13년 전 조회 2,033
13년 전 조회 3,016
13년 전 조회 2,091
13년 전 조회 2,232
13년 전 조회 1,953
13년 전 조회 1,982
13년 전 조회 1,998
13년 전 조회 2,079
13년 전 조회 3,233
13년 전 조회 2,246
13년 전 조회 2,343
13년 전 조회 3,245
13년 전 조회 2,429
13년 전 조회 4,030
13년 전 조회 1,907
13년 전 조회 4,603
13년 전 조회 2,022
13년 전 조회 4,829
13년 전 조회 2,380
13년 전 조회 2,383
13년 전 조회 2,710
13년 전 조회 1,694
13년 전 조회 1,741
13년 전 조회 2,738
13년 전 조회 3,310
13년 전 조회 2,020
13년 전 조회 1,773
13년 전 조회 1,910
13년 전 조회 1,868