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,564
13년 전 조회 1,387
13년 전 조회 6,920
13년 전 조회 1,696
13년 전 조회 1,215
13년 전 조회 3,585
13년 전 조회 1,922
13년 전 조회 4,375
13년 전 조회 2,095
13년 전 조회 1,754
13년 전 조회 1,312
13년 전 조회 1,271
13년 전 조회 1,525
13년 전 조회 1,764
13년 전 조회 2,462
13년 전 조회 1,694
13년 전 조회 2,912
13년 전 조회 1,790
13년 전 조회 4,933
13년 전 조회 4,084
13년 전 조회 5,653
13년 전 조회 8,239
13년 전 조회 3,491
13년 전 조회 2,939
13년 전 조회 1,298
13년 전 조회 3,659
13년 전 조회 1,523
13년 전 조회 5,065
13년 전 조회 3,291
13년 전 조회 2,539
13년 전 조회 2,388
13년 전 조회 6,715
13년 전 조회 2,515
13년 전 조회 2,132
13년 전 조회 2,059
13년 전 조회 3,628
13년 전 조회 3,579
13년 전 조회 1,950
13년 전 조회 2,145
13년 전 조회 5,371
13년 전 조회 1,460
13년 전 조회 1,921
13년 전 조회 2,279
13년 전 조회 2,662
13년 전 조회 2,680
13년 전 조회 2,459
13년 전 조회 5,559
13년 전 조회 1,870
13년 전 조회 6,876
13년 전 조회 2,386
13년 전 조회 2,426
13년 전 조회 2,179
13년 전 조회 1,809
13년 전 조회 2,568
13년 전 조회 1,543
13년 전 조회 3,039
13년 전 조회 1,399
13년 전 조회 1,360
13년 전 조회 4,012
13년 전 조회 1,821
13년 전 조회 1,455
13년 전 조회 1,299
13년 전 조회 1,820
13년 전 조회 2,985
13년 전 조회 1,427
13년 전 조회 2,331
13년 전 조회 1,535
13년 전 조회 1,477
13년 전 조회 3,318
13년 전 조회 1,722
13년 전 조회 1,939
13년 전 조회 1,384
13년 전 조회 2,372
13년 전 조회 1,426
13년 전 조회 1,566
13년 전 조회 1,313
13년 전 조회 1,340
13년 전 조회 1,352
13년 전 조회 1,438
13년 전 조회 2,682
13년 전 조회 1,636
13년 전 조회 1,759
13년 전 조회 2,660
13년 전 조회 1,815
13년 전 조회 3,454
13년 전 조회 1,323
13년 전 조회 4,001
13년 전 조회 1,456
13년 전 조회 4,272
13년 전 조회 1,818
13년 전 조회 1,803
13년 전 조회 2,138
13년 전 조회 1,112
13년 전 조회 1,199
13년 전 조회 2,179
13년 전 조회 2,766
13년 전 조회 1,437
13년 전 조회 1,196
13년 전 조회 1,328
13년 전 조회 1,316