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년 전 조회 1,582
13년 전 조회 1,402
13년 전 조회 6,929
13년 전 조회 1,705
13년 전 조회 1,231
13년 전 조회 3,602
13년 전 조회 1,940
13년 전 조회 4,388
13년 전 조회 2,115
13년 전 조회 1,771
13년 전 조회 1,328
13년 전 조회 1,293
13년 전 조회 1,552
13년 전 조회 1,780
13년 전 조회 2,475
13년 전 조회 1,710
13년 전 조회 2,928
13년 전 조회 1,814
13년 전 조회 4,951
13년 전 조회 4,106
13년 전 조회 5,669
13년 전 조회 8,260
13년 전 조회 3,506
13년 전 조회 2,955
13년 전 조회 1,318
13년 전 조회 3,678
13년 전 조회 1,548
13년 전 조회 5,082
13년 전 조회 3,310
13년 전 조회 2,563
13년 전 조회 2,411
13년 전 조회 6,736
13년 전 조회 2,535
13년 전 조회 2,153
13년 전 조회 2,074
13년 전 조회 3,649
13년 전 조회 3,598
13년 전 조회 1,963
13년 전 조회 2,164
13년 전 조회 5,391
13년 전 조회 1,476
13년 전 조회 1,945
13년 전 조회 2,293
13년 전 조회 2,676
13년 전 조회 2,702
13년 전 조회 2,472
13년 전 조회 5,570
13년 전 조회 1,887
13년 전 조회 6,892
13년 전 조회 2,403
13년 전 조회 2,442
13년 전 조회 2,195
13년 전 조회 1,826
13년 전 조회 2,589
13년 전 조회 1,559
13년 전 조회 3,057
13년 전 조회 1,421
13년 전 조회 1,371
13년 전 조회 4,035
13년 전 조회 1,844
13년 전 조회 1,468
13년 전 조회 1,309
13년 전 조회 1,833
13년 전 조회 3,002
13년 전 조회 1,441
13년 전 조회 2,345
13년 전 조회 1,551
13년 전 조회 1,494
13년 전 조회 3,336
13년 전 조회 1,739
13년 전 조회 1,954
13년 전 조회 1,398
13년 전 조회 2,384
13년 전 조회 1,441
13년 전 조회 1,589
13년 전 조회 1,329
13년 전 조회 1,354
13년 전 조회 1,367
13년 전 조회 1,454
13년 전 조회 2,690
13년 전 조회 1,654
13년 전 조회 1,778
13년 전 조회 2,674
13년 전 조회 1,833
13년 전 조회 3,469
13년 전 조회 1,339
13년 전 조회 4,013
13년 전 조회 1,476
13년 전 조회 4,292
13년 전 조회 1,837
13년 전 조회 1,819
13년 전 조회 2,161
13년 전 조회 1,133
13년 전 조회 1,212
13년 전 조회 2,192
13년 전 조회 2,779
13년 전 조회 1,462
13년 전 조회 1,210
13년 전 조회 1,347
13년 전 조회 1,331