function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
위와같은 페이지에 보면 with가 쓰이는데..
이건 with(navigator){
이안에 들어있는 appName는 appName가 아니라
navigator.appName << 요놈이 호출되는것
}
'개인적인 프로그램 > 자바스크립트' 카테고리의 다른 글
extjs 에디터 수정 (0) | 2011.10.26 |
---|---|
attachEvent 혹은 addEventListener 에 대한 테스트... (0) | 2011.10.26 |
개인적으로 이벤트 리스너에 등록하는 것과 이벤트의 펑션 입력시의 차이 비교 (0) | 2011.10.26 |
세로로 돌리는 티커 (0) | 2011.10.26 |
브라우저가 닫힐때, 새로고침을 할때, 다른사이트로 이동할때 이벤트... (0) | 2011.10.26 |