叶子树logo
首 页 技术教程 新闻资讯 网站展示 酷站欣赏 下载中心 站长故事 信息互动 论坛交流
Web www.webshu.net
 
  最新推荐→

 
  最新热门→

 
  相关文章→
 您现在的位置: 叶子树 >> 技术教程 >> 网页制作 >> FrontPage教程 >> 正文

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

作者:佚名    文章来源:不详    点击数:    更新时间:2008-6-25           

 

<% if request("infoid")<>"" then set rs=conn.execute("select * from nproduct where id="&request("infoid")) if not (rs.eof and rs.bof) then proname=rs("proname") content=rs("proinfo") end if rs.close set rs=nothing end if %>
对象属性
代码
  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. <script language="javascript">  
  4.     var oImage  
  5.     oImage = new Image()  
  6.     document.images.oImage.src="/1.jpg"  
  7. </script>  
  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控件相关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>  
代码
  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>  

代码  
  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支持此属性,因此也用来判断浏览器的种类*/ 
叶子树:www.webshu.net
  • 下一篇文章:

  • 文章录入:webshu    责任编辑:webshu 
    叶子树(www.webshu.net)所有资料源于作者发布或网友推荐收集整理而来,仅供学习使用,版权归原作者所有,如有侵权,请您联系我们,我们将尽快更正。

      网友评论:(评论内容只代表网友观点,与本站立场无关!) 发表评论

    友情链接 | 留言互动 | 版权声明
    Copyright©All return the ye ze shu and www.webshu.net   
    本站广告服务请加QQ:904166(超越-激情)
    京ICP备05086028号  把"叶子树" 与你的好友一起分享!