function moveLayer(strlayer,width,height,evt) {
var theObj;
if (navigator.appName == 'Netscape' && document.layers != null)
theObj = eval("document.layers['" + strlayer + "']");
else if (document.all != null) //IE
theObj = eval("document.all['" + strlayer + "'].style");
var windowWidth = document.body.scrollWidth;
if(theObj) {
if (windowWidth<1180){
theObj.pixelLeft = evt.x+5-200;
theObj.pixelTop = evt.y+5+document.body.scrollTop;
}else{
theObj.pixelLeft = evt.x+5-200;
theObj.pixelTop = evt.y+5+document.body.scrollTop;
}
}
}
>>
theObj = eval("document.all['" + strlayer + "'].style");
여기 코드에서 에러나오느데요 스타일을 못찾는다고 하네욤~~ 스타일을 지워도 안되서 올려보와욤^^
도와주실분^^
var theObj;
if (navigator.appName == 'Netscape' && document.layers != null)
theObj = eval("document.layers['" + strlayer + "']");
else if (document.all != null) //IE
theObj = eval("document.all['" + strlayer + "'].style");
var windowWidth = document.body.scrollWidth;
if(theObj) {
if (windowWidth<1180){
theObj.pixelLeft = evt.x+5-200;
theObj.pixelTop = evt.y+5+document.body.scrollTop;
}else{
theObj.pixelLeft = evt.x+5-200;
theObj.pixelTop = evt.y+5+document.body.scrollTop;
}
}
}
>>
theObj = eval("document.all['" + strlayer + "'].style");
여기 코드에서 에러나오느데요 스타일을 못찾는다고 하네욤~~ 스타일을 지워도 안되서 올려보와욤^^
도와주실분^^
댓글 1개
sjsjin
13년 전
위 코드를 왜 eval 로 처리하는지 모르겠군요. 불필요한데..
if(document.getElementById)
theObs = document.getElementById(strlayer); // DOM
else if (document.layers)
theObj = document.layers[strlayer]; // NN
else if (document.alll) // IE < IE7, 스트릿모드 생략
theObj = document.all[strlayer];
// 스타일처리시
theObj.style.........
if(document.getElementById)
theObs = document.getElementById(strlayer); // DOM
else if (document.layers)
theObj = document.layers[strlayer]; // NN
else if (document.alll) // IE < IE7, 스트릿모드 생략
theObj = document.all[strlayer];
// 스타일처리시
theObj.style.........
게시판 목록
팁게시판
디자인과 관련된 유용한 정보를 공유하세요.
질문은 상단의 QA에서 해주시기 바랍니다.
질문은 상단의 QA에서 해주시기 바랍니다.
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 4677 |
|
13년 전 | 1206 | |
| 4676 | 13년 전 | 4969 | ||
| 4675 |
부산아무개
|
13년 전 | 1653 | |
| 4674 | 13년 전 | 2447 | ||
| 4673 | 13년 전 | 1835 | ||
| 4672 | 13년 전 | 1040 | ||
| 4671 | 13년 전 | 1126 | ||
| 4670 | 13년 전 | 1039 | ||
| 4669 |
아르toria
|
13년 전 | 767 | |
| 4668 |
|
13년 전 | 1145 | |
| 4667 |
디지털홍익인간
|
13년 전 | 7649 | |
| 4666 | 13년 전 | 3088 | ||
| 4665 | 13년 전 | 868 | ||
| 4664 |
WaaNee
|
13년 전 | 1900 | |
| 4663 | 13년 전 | 2077 | ||
| 4662 | 13년 전 | 4603 | ||
| 4661 | 13년 전 | 924 | ||
| 4660 | 13년 전 | 2120 | ||
| 4659 | 13년 전 | 673 | ||
| 4658 |
JacobJeon
|
13년 전 | 1095 | |
| 4657 | 13년 전 | 1160 | ||
| 4656 | 13년 전 | 694 | ||
| 4655 | 13년 전 | 10452 | ||
| 4654 | 13년 전 | 1444 | ||
| 4653 | 13년 전 | 853 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기