문서 문서 개체 - JavaScript 스크립팅 언어 설명
----------------------------------------- -- ----------------------------------
참고: 페이지에 있는 요소의 이름 속성 JavaScript에서 참조하는 이름은 크기를 포함하여 일관되어야 합니다.
을 작성하세요. 그렇지 않으면 "참조된 요소가 비어 있거나 개체가 아닙니다"라는 오류 메시지가 표시됩니다.
------------ --------------- --------- ----------
객체 속성
태그에 해당하는 문서 제목 설정
documen.fgcolor // >document.linkColor URL //문서에서 다른 웹 페이지를 열도록 URL 속성을 설정합니다. fileCreatedDate // 파일 생성 날짜, 읽기 전용 속성
문서 .fileModifiedDate // 파일 수정 날짜, 읽기 전용 속성
document.fileSize // 파일 크기, 읽기 전용 속성
document.cookie // 쿠키 설정 및 읽기
Document.charset // 문자 설정 중국어 간체 설정: gb2312
----------------------------- ------------------------------------- ------------------------------------- ------------------------------------- ------------------------------ ------- ------------------------------ ------- -
객체 메서드
document.write() //동적으로 페이지에 콘텐츠 쓰기
document.createElement(Tag) //html 태그 객체 생성
document.getElementById(ID) //GetElementById(ID) 지정된 ID 값을 가진 객체
document.getElementsByName(Name) //지정된 Name 값을 가진 객체 가져오기
--- ----- -------------------------------- -
이미지 컬렉션(페이지 내 이미지)
a) 컬렉션을 통해
document.images 참조 // 해당 페이지의
태그
document.images 길이 ~ 태그
b)
document.images.oImage //document.images.name 속성
c) 이미지
문서의 src 속성을 직접 참조합니다. Images.oImage.src //document.images.nameproperty.src
d) 이미지 생성 var oImage
oImage = new Image()
images.oImage.src= "/1.jpg"
동시에 해당 페이지에 태그를 생성하여
------------------- ------- --------------
양식 모음(페이지의 양식)
a) 참고
컬렉션을 통한 document.forms //해당 페이지의 태그
document.forms.length //해당 페이지의
태그 수document. / 각
document.forms[i].elements[j]에 있는 컨트롤의 수 //i-1번째
b) 레이블을 통해 j-1번째 컨트롤 이름 속성은
-----------------------------------------------------------------------
<script> <BR> //遍历select控件的option项 <BR> var length <BR> length=document.Myform.oSelect.length <BR> for(i=0;i<length;i++) <BR> document.write(document.Myform.oSelect[i].value) <BR></script>
<script> <BR> //遍历option项并且判断某个option是否被选中 <BR> for(i=0;i<document.Myform.oSelect.length;i++){ <BR> if(document.Myform.oSelect[i].selected!=true) <BR> document.write(document.Myform.oSelect[i].value) <BR> else <BR> document.write("<font color=red>"+document.Myform.oSelect[i].value+"") <BR> } <BR></script>
<script> <BR> //根据SelectedIndex打印出选中的option <BR> //(0到document.Myform.oSelect.length-1) <BR> i=document.Myform.oSelect.selectedIndex <BR> document.write(document.Myform.oSelect[i].value) <BR></script>
<script> <BR> //动态增加select控件的option项 <BR> var oOption = document.createElement("OPTION"); <BR> oOption.text="4"; <BR> oOption.value="4"; <BR> document.Myform.oSelect.add(oOption); <BR></script>
-----------------------------------------------------------------------
document.all.oDiv //引用图层oDiv
document.all.oDiv.style
document.all.oDiv.style.display="" //图层设置为可视
document.all.oDiv.style.display="none" //图层设置为隐藏
/*document.all表示document中所有对象的集合
只有ie支持此属性,因此也用来判断浏览器的种类*/