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 참 간결하죠 ㅋ
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

태그 필터 (최대 3개) 전체 개발자 소스 기타 mysql 팁자료실 javascript php linux flash 정규표현식 jquery node.js mobile 웹서버 os 프로그램 강좌 썸네일 이미지관련 도로명주소 그누보드5 기획자 견적서 계약서 기획서 마케팅 제안서 seo 통계 서식 통계자료 퍼블리셔 html css 반응형 웹접근성 퍼블리싱 표준화 반응형웹 홈페이지기초 부트스트랩 angularjs 포럼 스크린리더 센스리더 개발자톡 개발자팁 퍼블리셔톡 퍼블리셔팁 기획자톡 기획자팁 프로그램강좌 퍼블리싱강좌
+
제목 글쓴이 날짜 조회
13년 전 조회 1,627
13년 전 조회 1,452
13년 전 조회 6,970
13년 전 조회 1,740
13년 전 조회 1,279
13년 전 조회 3,650
13년 전 조회 1,982
13년 전 조회 4,423
13년 전 조회 2,159
13년 전 조회 1,827
13년 전 조회 1,377
13년 전 조회 1,337
13년 전 조회 1,603
13년 전 조회 1,830
13년 전 조회 2,521
13년 전 조회 1,756
13년 전 조회 2,968
13년 전 조회 1,863
13년 전 조회 4,994
13년 전 조회 4,156
13년 전 조회 5,716
13년 전 조회 8,304
13년 전 조회 3,547
13년 전 조회 3,004
13년 전 조회 1,379
13년 전 조회 3,731
13년 전 조회 1,597
13년 전 조회 5,121
13년 전 조회 3,345
13년 전 조회 2,615
13년 전 조회 2,462
13년 전 조회 6,781
13년 전 조회 2,574
13년 전 조회 2,211
13년 전 조회 2,131
13년 전 조회 3,701
13년 전 조회 3,651
13년 전 조회 2,012
13년 전 조회 2,206
13년 전 조회 5,440
13년 전 조회 1,522
13년 전 조회 1,993
13년 전 조회 2,343
13년 전 조회 2,720
13년 전 조회 2,747
13년 전 조회 2,517
13년 전 조회 5,613
13년 전 조회 1,920
13년 전 조회 6,944
13년 전 조회 2,442
13년 전 조회 2,486
13년 전 조회 2,232
13년 전 조회 1,865
13년 전 조회 2,634
13년 전 조회 1,600
13년 전 조회 3,099
13년 전 조회 1,459
13년 전 조회 1,413
13년 전 조회 4,071
13년 전 조회 1,891
13년 전 조회 1,505
13년 전 조회 1,340
13년 전 조회 1,877
13년 전 조회 3,041
13년 전 조회 1,473
13년 전 조회 2,388
13년 전 조회 1,596
13년 전 조회 1,538
13년 전 조회 3,378
13년 전 조회 1,774
13년 전 조회 1,989
13년 전 조회 1,444
13년 전 조회 2,432
13년 전 조회 1,484
13년 전 조회 1,634
13년 전 조회 1,370
13년 전 조회 1,387
13년 전 조회 1,402
13년 전 조회 1,499
13년 전 조회 2,716
13년 전 조회 1,693
13년 전 조회 1,813
13년 전 조회 2,698
13년 전 조회 1,861
13년 전 조회 3,499
13년 전 조회 1,376
13년 전 조회 4,042
13년 전 조회 1,508
13년 전 조회 4,321
13년 전 조회 1,875
13년 전 조회 1,856
13년 전 조회 2,197
13년 전 조회 1,172
13년 전 조회 1,245
13년 전 조회 2,235
13년 전 조회 2,799
13년 전 조회 1,500
13년 전 조회 1,238
13년 전 조회 1,384
13년 전 조회 1,372