现在的位置: 首页 > 综合 > 正文

javascript中document学习

2013年06月23日 ⁄ 综合 ⁄ 共 3047字 ⁄ 字号 评论关闭
JS中document对象详解 
document 文挡对象 - JavaScript脚本语言描述 
对象属性 
Java代码 
  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  

对象方法 

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

images集合(页面中的图象) 

  a)通过集合引用 

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

  b)通过nane属性直接引用 
  

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

  c)引用图片的src属性 
  

Java代码 
  1. document.images.oImage.src   //document.images.name属性.src  

  d)创建一个图象 

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

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

Java代码 
  1. <html>  
  2. <img name=oImage>  
  3. <script language="javascript">  
  4.     var oImage  
  5.     oImage = new Image()  
  6.     document.images.oImage.src="/1.jpg"  
  7. </script>  
  8. </html>  

forms集合(页面中的表单) 

  a)通过集合引用 

Java代码 
  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属性直接引用 

Java代码 
  1. <form name="Myform"><input name="myctrl"></form>  
  2. document.Myform.myctrl          //document.表单名.控件名  
Java代码 
  1. <html>  
  2. <!--Text控件相关Script-->  
  3. <form name="Myform">  
  4. <input type="text" name="oText">  
  5. <input type="password" name="oPswd">  
  6. <form>  
  7. <script language="javascript">  
  8. //获取文本密码框的值  
  9. document.write(document.Myform.oText.value)  
  10. document.write(document.Myform.oPswd.value)  
  11. </script>  
  12. </html>  
Java代码 
  1. <html>  
  2. <!--Select控件相关Script-->  
  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. <script language="javascript">  
  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. </script>  
  18.   
  19. <script language="javascript">  
  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. </script>  
  28.   
  29. <script language="javascript">  

抱歉!评论已关闭.