자바스크립트 객체 주요 요소값 출력
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 Document 객체 주요 요소값 var text = "문서 로딩 중일때 readyState = " + document.readyState + "\n"; 네이버 이곳은 div 영역입니다 function printProperties(){ document.getElementById("input").focus(); text += "1.location = " + document.location +"\n"; text += "2.URL = " + document.URL +"\n"; // 주소 정보만 보여주는 것 text += "3.title = " +..