자바스크립트 오류인데요^^ 도와주실분^^

· 13년 전 · 799 · 1
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");

여기 코드에서 에러나오느데요 스타일을 못찾는다고 하네욤~~ 스타일을 지워도 안되서 올려보와욤^^

도와주실분^^
|

댓글 1개

위 코드를 왜 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.........
댓글을 작성하시려면 로그인이 필요합니다.

팁게시판

디자인과 관련된 유용한 정보를 공유하세요. 질문은 상단의 QA에서 해주시기 바랍니다.

+
제목 글쓴이 날짜 조회
13년 전 조회 797
13년 전 조회 745
13년 전 조회 699
13년 전 조회 771
13년 전 조회 2,112
13년 전 조회 2,219
13년 전 조회 1,472
13년 전 조회 999
13년 전 조회 1,881
13년 전 조회 1,260
13년 전 조회 1,149
13년 전 조회 624
13년 전 조회 800
13년 전 조회 1,056
13년 전 조회 3,603
13년 전 조회 3,116
13년 전 조회 3,722
13년 전 조회 3,080
13년 전 조회 642
13년 전 조회 734
13년 전 조회 9,072
13년 전 조회 2,174
13년 전 조회 2,592
13년 전 조회 2,550
13년 전 조회 3,112