详细讲解JavaScript脚本语言的 document 对象

来源:互联网 发布:自学python要多久 编辑:程序博客网 时间:2024/05/22 14:02
对象属性
代码

   1. document.title              //设置文档标题等价于HTML的<title>标签 
   2. document.bgColor            //设置页面背景色 
   3. document.fgColor            //设置前景色(文本颜色) 
   4. document.linkColor          //未点击过的链接颜色 
   5. document.alinkColor         //激活链接(焦点在此链接上)的颜色 
   6. document.vlinkColor         //已点击过的链接颜色 
   7. document.URL                //设置URL属性从而在同一窗口打开另一网页 
   8. document.fileCreatedDate    //文件建立日期,只读属性 
   9. document.fileModifiedDate   //文件修改日期,只读属性 
  10. document.fileSize           //文件大小,只读属性 
  11. document.cookie             //设置和读出cookie 
  12. document.charset            //设置字符集 简体中文:gb2312 


对象方法
代码

   1. document.write()                   //动态向页面写入内容 
   2. document.createElement(Tag)        //创建一个html标签对象 
   3. document.getElementById(ID)        //获得指定ID值的对象 
   4. document.getElementsByName(Name)   //获得指定Name值的对象 


images集合(页面中的图象)

a)通过集合引用
代码

   1. document.images              //对应页面上的<img>标签 
   2. document.images.length       //对应页面上<img>标签的个数 
   3. document.images[0]           //第1个<img>标签            
   4. document.images[i]           //第i-1个<img>标签 

b)通过nane属性直接引用
代码

   1. <img name="oImage"> 
   2.     document.images.oImage       //document.images.name属性 

c)引用图片的src属性
代码

   1. document.images.oImage.src   //document.images.name属性.src 

d)创建一个图象
代码

   1. var oImage 
   2. oImage = new Image() 
   3. document.images.oImage.src="/1.jpg" 


同时在页面上建立一个<img>标签与之对应就可以显示
代码

   1. <html> 
   2. <img name=oImage> 
   3. <scrīpt language="javascrīpt"> 
   4.     var oImage 
   5.     oImage = new Image() 
   6.     document.images.oImage.src="/1.jpg" 
   7. </scrīpt> 
   8. </html> 


forms集合(页面中的表单)

a)通过集合引用
代码

   1. document.forms                  //对应页面上的<form>标签 
   2. document.forms.length           //对应页面上<form>标签的个数 
   3. document.forms[0]               //第1个<form>标签 
   4. document.forms[i]               //第i-1个<form>标签 
   5. document.forms[i].length        //第i-1个<form>中的控件数 
   6. document.forms[i].elements[j]   //第i-1个<form>中第j-1个控件 

b)通过标签name属性直接引用
代码

   1. <form name="Myform"><input name="myctrl"></form> 
   2. document.Myform.myctrl          //document.表单名.控件名 

代码

   1. <html> 
   2. <!--Text控件相关scrīpt--> 
   3. <form name="Myform"> 
   4. <input type="text" name="oText"> 
   5. <input type="password" name="oPswd"> 
   6. <form> 
   7. <scrīpt language="javascrīpt"> 
   8. //获取文本密码框的值 
   9. document.write(document.Myform.oText.value) 
  10. document.write(document.Myform.oPswd.value) 
  11. </scrīpt> 
  12. </html> 

代码

   1. <html> 
   2. <!--Select控件相关scrīpt--> 
   3. <form name="Myform"> 
   4. <select name="oSelect"> 
   5. <option value="1">1</option> 
   6. <option value="2">2</option> 
   7. <option value="3">3</option> 
   8. </select> 
   9. </form> 
  10.  
  11. <scrīpt language="javascrīpt"> 
  12.     //遍历select控件的option项 
  13.     var length 
  14.     length=document.Myform.oSelect.length 
  15.     for(i=0;i<length;i++) 
  16.     document.write(document.Myform.oSelect[i].value) 
  17. </scrīpt> 
  18.  
  19. <scrīpt language="javascrīpt"> 
  20.     //遍历option项并且判断某个option是否被选中 
  21.     for(i=0;i<document.Myform.oSelect.length;i++){ 
  22.     if(document.Myform.oSelect[i].selected!=true) 
  23.     document.write(document.Myform.oSelect[i].value) 
  24.     else 
  25.     document.write("<font color=red>"+document.Myform.oSelect[i].value+"</font>")    
  26.     } 
  27. </scrīpt> 
  28.  
  29. <scrīpt language="javascrīpt"> 
  30.     //根据SelectedIndex打印出选中的option 
  31.     //(0到document.Myform.oSelect.length-1) 
  32.     i=document.Myform.oSelect.selectedIndex 
  33.     document.write(document.Myform.oSelect[i].value) 
  34. </scrīpt> 
  35.  
  36. <scrīpt language="javascrīpt"> 
  37.     //动态增加select控件的option项 
  38.     var oOption = document.createElement("OPTION"); 
  39.     oOption.text="4"; 
  40.     oOption.value="4"; 
  41.     document.Myform.oSelect.add(oOption); 
  42. </scrīpt> 
  43. <html> 


代码
 

   1. <Div id="oDiv">Text</Div> 
   2.   document.all.oDiv                        //引用图层oDiv 
   3.   document.all.oDiv.style                  
   4.   document.all.oDiv.style.display=""       //图层设置为可视 
   5.   document.all.oDiv.style.display="none"   //图层设置为隐藏 


/*document.all表示document中所有对象的集合
只有ie支持此属性,因此也用来判断浏览器的种类*/ 
原创粉丝点击