주말에 제 홈피를 리뉴얼 중 (각 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개
게시글 목록
| 번호 | 제목 |
|---|---|
| 2254 |
HTML
레이아웃이 비뚤합니다.
3
|
| 2247 |
HTML
DIV의 justify 정렬 문제
7
|
| 2244 | |
| 2239 | |
| 2225 | |
| 2215 | |
| 2214 |
HTML
고수님들 도움좀 부탁드립니다!
|
| 2207 |
HTML
[접기 펴기]간단 소스 문의좀..
2
|
| 2198 | |
| 2195 | |
| 2192 | |
| 2191 |
HTML
이미지 게시판 질문드려요
|
| 2190 |
HTML
모바일 퍼스트와 반응형 웹
|
| 2187 |
HTML
프레임 문의 드려요 ^^;;
2
|
| 2186 |
HTML
HTML5 스터디가 가능할까요?
|
| 2181 |
HTML
반응형 웹 스타디 초안?
6
|
| 2180 |
HTML
opacity 질문입니다.!
|
| 2172 | |
| 2170 | |
| 2169 | |
| 2166 | |
| 2162 |
HTML
php로 사이트 개발시
3
|
| 2158 | |
| 2156 | |
| 2152 | |
| 2148 | |
| 2145 | |
| 2119 |
HTML
제일 이해안되는 문제..
25
|
| 2112 |
HTML
태그 문의드립니다...
6
|
| 2104 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기