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,821
13년 전 조회 1,679
13년 전 조회 7,184
13년 전 조회 1,955
13년 전 조회 1,489
13년 전 조회 3,846
13년 전 조회 2,185
13년 전 조회 4,587
13년 전 조회 2,357
13년 전 조회 2,034
13년 전 조회 1,578
13년 전 조회 1,569
13년 전 조회 1,820
13년 전 조회 2,029
13년 전 조회 2,718
13년 전 조회 1,995
13년 전 조회 3,171
13년 전 조회 2,061
13년 전 조회 5,204
13년 전 조회 4,369
13년 전 조회 5,910
13년 전 조회 8,506
13년 전 조회 3,768
13년 전 조회 3,220
13년 전 조회 1,607
13년 전 조회 3,928
13년 전 조회 1,804
13년 전 조회 5,332
13년 전 조회 3,503
13년 전 조회 2,803
13년 전 조회 2,636
13년 전 조회 6,980
13년 전 조회 2,799
13년 전 조회 2,443
13년 전 조회 2,325
13년 전 조회 3,897
13년 전 조회 3,851
13년 전 조회 2,221
13년 전 조회 2,402
13년 전 조회 5,647
13년 전 조회 1,722
13년 전 조회 2,183
13년 전 조회 2,529
13년 전 조회 2,922
13년 전 조회 2,937
13년 전 조회 2,690
13년 전 조회 5,806
13년 전 조회 2,126
13년 전 조회 7,141
13년 전 조회 2,632
13년 전 조회 2,691
13년 전 조회 2,417
13년 전 조회 2,064
13년 전 조회 2,817
13년 전 조회 1,815
13년 전 조회 3,289
13년 전 조회 1,652
13년 전 조회 1,618
13년 전 조회 4,255
13년 전 조회 2,070
13년 전 조회 1,675
13년 전 조회 1,526
13년 전 조회 2,049
13년 전 조회 3,231
13년 전 조회 1,655
13년 전 조회 2,576
13년 전 조회 1,781
13년 전 조회 1,713
13년 전 조회 3,547
13년 전 조회 1,961
13년 전 조회 2,162
13년 전 조회 1,614
13년 전 조회 2,616
13년 전 조회 1,659
13년 전 조회 1,808
13년 전 조회 1,548
13년 전 조회 1,576
13년 전 조회 1,578
13년 전 조회 1,677
13년 전 조회 2,828
13년 전 조회 1,836
13년 전 조회 1,931
13년 전 조회 2,845
13년 전 조회 1,999
13년 전 조회 3,633
13년 전 조회 1,510
13년 전 조회 4,178
13년 전 조회 1,635
13년 전 조회 4,450
13년 전 조회 1,995
13년 전 조회 1,984
13년 전 조회 2,319
13년 전 조회 1,303
13년 전 조회 1,372
13년 전 조회 2,356
13년 전 조회 2,895
13년 전 조회 1,619
13년 전 조회 1,382
13년 전 조회 1,512
13년 전 조회 1,495