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,104
13년 전 조회 1,994
13년 전 조회 7,491
13년 전 조회 2,238
13년 전 조회 1,803
13년 전 조회 4,103
13년 전 조회 2,461
13년 전 조회 4,865
13년 전 조회 2,683
13년 전 조회 2,312
13년 전 조회 1,872
13년 전 조회 1,846
13년 전 조회 2,096
13년 전 조회 2,301
13년 전 조회 3,025
13년 전 조회 2,302
13년 전 조회 3,472
13년 전 조회 2,370
13년 전 조회 5,486
13년 전 조회 4,662
13년 전 조회 6,216
13년 전 조회 8,810
13년 전 조회 4,069
13년 전 조회 3,509
13년 전 조회 1,886
13년 전 조회 4,213
13년 전 조회 2,117
13년 전 조회 5,644
13년 전 조회 3,811
13년 전 조회 3,093
13년 전 조회 2,946
13년 전 조회 7,272
13년 전 조회 3,083
13년 전 조회 2,747
13년 전 조회 2,614
13년 전 조회 4,182
13년 전 조회 4,122
13년 전 조회 2,512
13년 전 조회 2,708
13년 전 조회 5,934
13년 전 조회 1,988
13년 전 조회 2,473
13년 전 조회 2,774
13년 전 조회 3,191
13년 전 조회 3,183
13년 전 조회 2,938
13년 전 조회 6,055
13년 전 조회 2,394
13년 전 조회 7,396
13년 전 조회 2,881
13년 전 조회 2,953
13년 전 조회 2,665
13년 전 조회 2,330
13년 전 조회 3,069
13년 전 조회 2,081
13년 전 조회 3,572
13년 전 조회 1,903
13년 전 조회 1,882
13년 전 조회 4,538
13년 전 조회 2,324
13년 전 조회 1,945
13년 전 조회 1,820
13년 전 조회 2,299
13년 전 조회 3,491
13년 전 조회 1,945
13년 전 조회 2,857
13년 전 조회 2,045
13년 전 조회 1,989
13년 전 조회 3,818
13년 전 조회 2,232
13년 전 조회 2,423
13년 전 조회 1,884
13년 전 조회 2,875
13년 전 조회 1,940
13년 전 조회 2,075
13년 전 조회 1,795
13년 전 조회 1,837
13년 전 조회 1,874
13년 전 조회 1,930
13년 전 조회 3,076
13년 전 조회 2,113
13년 전 조회 2,206
13년 전 조회 3,090
13년 전 조회 2,267
13년 전 조회 3,878
13년 전 조회 1,758
13년 전 조회 4,431
13년 전 조회 1,867
13년 전 조회 4,672
13년 전 조회 2,242
13년 전 조회 2,235
13년 전 조회 2,555
13년 전 조회 1,544
13년 전 조회 1,615
13년 전 조회 2,616
13년 전 조회 3,153
13년 전 조회 1,867
13년 전 조회 1,623
13년 전 조회 1,775
13년 전 조회 1,750