zoukankan      html  css  js  c++  java
  • javascript中document学习

    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">  
    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. </script>  
    35.   
    36. <script language="javascript">  
    37.     //动态增加select控件的option项  
    38.     var oOption = document.createElement("OPTION");  
    39.     oOption.text="4";  
    40.     oOption.value="4";  
    41.     document.Myform.oSelect.add(oOption);  
    42. </script>  
    43. <html>  

    Java代码 
    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支持此属性,因此也用来判断浏览器的种类*/ 
  • 相关阅读:
    Rmarkdown:输出html设置
    Rmarkdown:输出pdf设置
    R语言绘图:雷达图
    R语言学习笔记(十五):获取文件和目录信息
    R语言学习笔记(十四):零碎知识点(41-45)
    R语言学习笔记(十三):零碎知识点(36-40)
    JVM调优-关于jvm的一些基本概念
    Markdown常用基本语法
    redis在windows中的安装
    jvm中加载类的全过程
  • 原文地址:https://www.cnblogs.com/top5/p/1857826.html
Copyright © 2011-2022 走看看