필요에 따라 자스/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개
13년 전
저도 분석해가면서 제이쿼리를 짜내려 가고 싶은데 부럽습니다..
3개월된 퍼블리셔에겐 아직 쫒기에 먼 님이네요 ㅎㅎ;;
잘보구 갑니다~~
3개월된 퍼블리셔에겐 아직 쫒기에 먼 님이네요 ㅎㅎ;;
잘보구 갑니다~~
13년 전
jquery 는 신세계죠.ㅎㅎ
takumi22
12년 전
Jquery 참 간결하죠 ㅋ
게시판 목록
퍼블리셔팁
퍼블리싱과 관련된 유용한 정보를 공유하세요.
질문은 상단의 QA에서 해주시기 바랍니다.
질문은 상단의 QA에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 617 | HTML | 13년 전 | 3418 | ||
| 616 | HTML |
|
13년 전 | 3217 | |
| 615 | HTML | 13년 전 | 4144 | ||
| 614 | HTML |
크라이스트
|
13년 전 | 5447 | |
| 613 | HTML | 13년 전 | 2589 | ||
| 612 | HTML | 13년 전 | 3868 | ||
| 611 | HTML | 13년 전 | 4083 | ||
| 610 | HTML | 13년 전 | 4853 | ||
| 609 | HTML | 13년 전 | 3831 | ||
| 608 | HTML | 13년 전 | 5308 | ||
| 607 | HTML | 13년 전 | 3192 | ||
| 606 | HTML | 13년 전 | 3092 | ||
| 605 | HTML |
techer
|
13년 전 | 5372 | |
| 604 | HTML | 13년 전 | 4354 | ||
| 603 | HTML | 13년 전 | 3076 | ||
| 602 | HTML | 13년 전 | 3277 | ||
| 601 | HTML |
성민꼬르꼬
|
13년 전 | 3956 | |
| 600 | HTML | 13년 전 | 3342 | ||
| 599 | HTML | 13년 전 | 4647 | ||
| 598 | HTML | 13년 전 | 6538 | ||
| 597 | HTML | 13년 전 | 2753 | ||
| 596 | HTML | 13년 전 | 3755 | ||
| 595 | HTML |
Black
|
13년 전 | 6366 | |
| 594 | HTML |
techer
|
13년 전 | 2552 | |
| 593 | HTML | 13년 전 | 4059 | ||
| 592 | HTML |
성민꼬르꼬
|
13년 전 | 3776 | |
| 591 | HTML | 13년 전 | 3480 | ||
| 590 | HTML | 13년 전 | 9211 | ||
| 589 | HTML | 13년 전 | 2850 | ||
| 588 | HTML |
크라운엠버서더
|
13년 전 | 4720 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기