document.title //HTML 제목 태그와 동일한 문서 제목 설정
document.bgColor //페이지 배경색 설정
document.fgColor //전경색(텍스트 색상) 설정
document.linkColor // 클릭되지 않은 링크 색상
document.alinkColor //활성 링크 색상(포커스는 이 링크에 있음)
document.vlinkColor //클릭된 링크 색상
document.URL //URL 속성 설정 따라서 같은 창에서 다른 웹페이지 열기
document.fileCreatedDate //파일 생성 날짜, 읽기 전용 속성
document.fileModifiedDate //파일 수정 날짜, 읽기 전용 속성
document. charset //문자 집합 설정 중국어 간체: gb2312
document.fileSize //파일 크기, 읽기 전용 속성
document.cookie //쿠키 설정 및 읽기
—————— ———————— ——————————
일반적인 개체 메서드
document.write() //동적으로 페이지에 콘텐츠 쓰기
document.createElement( Tag) //html 태그 객체 생성
document.getElementById(ID) //지정된 ID 값을 가진 객체 가져오기
document.getElementsByName(Name) //지정한 Name 값을 가진 객체 가져오기
document.body.appendChild(oTag)
—— ————————————————————————
body-body 하위 개체
document.body //문서 본문의 시작과 끝을 지정합니다. body>/body>와 동일합니다.
document.body.bgColor //객체 뒤의 배경색을 설정하거나 가져옵니다.
document. body.link //클릭하지 않은 링크의 색상
document.body.alink //활성 링크의 색상(포커스는 이 링크에 있음)
document.body.vlink //클릭한 링크의 색상
document.body.text //텍스트 색상
document.body.innerText / /body 사이에 텍스트 설정>.../body>
document.body.innerHTML //사이에 HTML 코드 설정 body>.../body>
document.body.topMargin //페이지 상단 여백
document.body.leftMargin //페이지 왼쪽 여백
document.body.rightMargin //오른쪽 여백 페이지
document.body.bottomMargin //페이지 하단 여백
document.body.Background //배경 이미지
document.body.appendChild(oTag) //HTML 객체를 동적으로 생성
공통 객체 이벤트
document.body.onclick=”func()” //마우스 포인터로 클릭한 객체가 Trigger
document.body.onmouseover=”func()” //Trigger 마우스 포인터가 객체로 이동할 때
document.body.onmouseout=”func()” //마우스 포인터가 객체 밖으로 이동할 때 트리거
— ———————————— ————————————
location-location 하위 개체
document.location.hash // # 뒤의 부분
document.location.host // 도메인 이름 및 포트 번호 // 호스트 이름 localhost가 반환되는 것 같지만 포트 번호가 반환되지 않습니다.
document.location.hostname // 도메인 이름
document.location.href // 전체 URL
document. location.pathname // 디렉토리 부분
document.location.port // 포트 번호
document.location.protocol // 네트워크 프로토콜(http:)
document.location.search // ? 마지막 부분
documenty.location.reload() //웹페이지 새로고침
document.location.reload(URL) //새 웹페이지 열기
document.location.asse(URL) //새 웹페이지 열기 웹 페이지
document.location.replace(URL) //새 웹페이지 열기
—————————————————————————
selection-selection 하위 개체
document.selection
예:
문단입니다. 문단입니다.
또 다른 문단입니다.
;이 마지막 단락은 script type="text /javascript">