자바스크립트 이게 뭔가요? 정보
자바스크립트 이게 뭔가요?본문
헤더 파일에 이거랑 똑 같은게 16개나 이어져 있어요. 도대체 뭐길래 똑같은게 16개나.... 전 건들인적 없는데... 필요없으면 지워도 되는지...
제가 작성한것도 아니고... 이런게 왜 제 헤더 파일에 삽입되어 있는지...
<script language="JavaScript">
<!--
function na_open_window(name, url, left, top, width, height, toolbar, menubar, statusbar, scrollbar, resizable)
{
toolbar_str = toolbar ? 'yes' : 'no';
menubar_str = menubar ? 'yes' : 'no';
statusbar_str = statusbar ? 'yes' : 'no';
scrollbar_str = scrollbar ? 'yes' : 'no';
resizable_str = resizable ? 'yes' : 'no';
cookie_str = document.cookie;
cookie_str.toString();
pos_start = cookie_str.indexOf(name);
pos_start = cookie_str.indexOf('=', pos_start);
pos_end = cookie_str.indexOf(';', pos_start);
if (pos_end <= 0) pos_end = cookie_str.length;
cookie_val = cookie_str.substring(pos_start + 1, pos_end);
if (cookie_val == "done")
return;
window.open(url, name, 'left='+left+',top='+top+',width='+width+',height='+height+',toolbar='+toolbar_str+',menubar='+menubar_str+',status='+statusbar_str+',scrollbars='+scrollbar_str+',resizable='+resizable_str);
}
// -->
</script>
댓글 전체

근데 내용이 뭔지...... 지워도 상관없는지....

중복 된다면 하나만 남기시면 됩니다.
나모쓰시는분중 저 스크립이용하시는분 거의 못봤습니다. --,.--
나름 이용자에게 편리를 주려고 했는데 사용빈도가 그렇게 많지 않습니다.
그누를 사용하신다면 위의 스크립트는 필요가 없습니다.
na_open_window(name, url, left, top, width, height, toolbar, menubar, statusbar, scrollbar, resizable)
창관련 옵션들입니다. 뉴창소스내용,왼쪽간격,위에간격,높이,툴바보일거냐,메뉴바보일거냐,상태창보일거냐,스크롤바보일거냐,리사이즈는 어쩔거냐....
cookie는 안보이기 기간설정용이고요
대충 이렇네요.
흐흐흐~~~
똑같은거 16개 싸그리 다지우고도 제대로 되네요^^
감사합니다.
cookie_str 이부분은 나모에서 실행시 자동삽입되는 정품사용 파악(?)용..일것같음...ㅎㅎ...