javascript中document学习

JS中document对象详解

document 文挡对象 - JavaScript脚本语言描述 
对象属性 

  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. <script language="javascript">
  11. //遍历select控件的option项
  12. var length
  13. length=document.Myform.oSelect.length
  14. for(i=0;i<length;i++)
  15. document.write(document.Myform.oSelect[i].value)
  16. </script>
  17. <script language="javascript">
  18. //遍历option项并且判断某个option是否被选中
  19. for(i=0;i<document.Myform.oSelect.length;i++){
  20. if(document.Myform.oSelect[i].selected!=true)
  21. document.write(document.Myform.oSelect[i].value)
  22. else
  23. document.write("<font color=red>"+document.Myform.oSelect[i].value+"</font>")
  24. }
  25. </script>
  26. <script language="javascript">
  27. //根据SelectedIndex打印出选中的option
  28. //(0到document.Myform.oSelect.length-1)
  29. i=document.Myform.oSelect.selectedIndex
  30. document.write(document.Myform.oSelect[i].value)
  31. </script>
  32. <script language="javascript">
  33. //动态增加select控件的option项
  34. var oOption = document.createElement("OPTION");
  35. oOption.text="4";
  36. oOption.value="4";
  37. document.Myform.oSelect.add(oOption);
  38. </script>
  39. <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支持此属性,因此也用来判断浏览器的种类*/ 

时间: 2024-08-28 02:44:13

javascript中document学习的相关文章

【JavaScript】Javascript中document.execCommand()的用法

Javascript中document.execCommand()的用法 合并转载: 转载出处1 转载出处2 document.execCommand()方法处理Html数据时常用语法格式如下:document.execCommand(sCommand[,交互方式, 动态参数]) 其中:sCommand为指令参数(如下例中的"2D-Position"),交互方式参数如果是true的话将显示对话框,如果为false的话,则不显示对话框(下例中的"false"即表示不显

javascript中document.appendChild和document.body.appendChild的问题

在IE7中 var conentDiv = document.createElement("div"); document.body.appendChild(conentDiv); document.appendChild(conentDiv); 都不会报错,但是在IE11中 document.appendChild(conentDiv);会报错:javascript runtime error:HierarchyRequestError 由于 div是document.body的子元

javascript中对象学习

第一篇文章: javascript中this关键字的详细解析:   http://blog.csdn.net/wyj880220/article/details/7305952 <其它文章 待补充……>

javascript 中 document.createElement()的用法

分析代码时,发现自己的盲点——document.createElement(),冲浪一番,总结了点经验. document.createElement()是在对象中创建一个对象,要与appendChild() 或 insertBefore()方法联合使用.其中,appendChild() 方法在节点的子节点列表末添加新的子节点.insertBefore() 方法在节点的子节点列表任意位置插入新的节点. 下面,举例说明document.createElement()的用法.<div id="

JavaScript中document.cookie

“某些 Web 站点在您的硬盘上用很小的文本文件存储了一些信息,这些文件就称为 Cookie.”—— MSIE 帮助.一般来说,Cookies 是 CGI 或类似,比 HTML 高级的文件.程序等创建的,但是 javascript 也提供了对 Cookies 的很全面的访问权利. 每个 Cookie 都是这样的:<cookie名>=<值> <cookie名>的限制与 javascript 的命名限制大同小异,少了“不能用 javascript 关键字”,多了“只能用可以

javascript中document.getElementsByClassName兼容性封装方法一

var getElmsByClsName = function(className, results) { results = results || []; // 判断浏览器是否支持 getElementsByClassName if(document.getElementsByClassName) { // 浏览器支持这个方法 results.push.apply( results, document.getElementsByClassName(className) ); } else {

Javascript中document.execCommand()的用法

document.execCommand()方法处理Html数据时常用语法格式如下: document.execCommand(sCommand[,交互方式, 动态参数]) 其中:sCommand为指令参数(如下例中的”2D-Position”),交互方式参数如果是true的话将显示对话框,如果为false的话,则不显示对话框(下例中的”false”即表示不显示对话框),动态参数一般为一可用值或属性值(如下例中的”true”). document.execCommand(”2D-Position

Javascript中document.execCommand()的用法 ( 实现浏览器菜单的很多功能 )

document.execCommand()方法处理Html数据时常用语法格式如下:document.execCommand(sCommand[,交互方式, 动态参数]) 其中:sCommand为指令参数(如下例中的"2D-Position"),交互方式参数如果是true的话将显示对话框,如果为false的话,则不显示对话框(下例中的"false"即表示不显示对话框),动态参数一般为一可用值或属性值(如下例中的"true"). document.

JavaScript中document对象的常用方法

document对象的概念 浏览器对外提供的支持js的用来操作HTML文档的一个对象,此对象封存的HTML文档的所有信息. 1.使用document获取HTML元素对象 直接获取方式: 通过id: window.document.getElementById("id值") 通过name属性值:document.getElementsByName("name值") 通过标签名:document.getElementsByTagName("属性名")