HTML DOM 简介

 Previous Page

· Next Page

HTML 文档对象模型(HTML Document Object Model)定义了访问和处理 HTML 文档的标准方法。

您应当具备的基础知识

在继续学习之前,您需要对下面的知识有基本的了解: 

· HTML / XHTML

· JavaScript

如果您希望首先学习这些项目,请在我们的首页访问这些教程。

什么是 DOM?

通过 JavaScript,您可以重构整个 HTML 文档。您可以添加、移除、改变或重排页面上的项目。

要改变页面的某个东西,JavaScript 就需要获得对 HTML 文档中所有元素进行访问的入口。这个入口,连同对 HTML 元素进行添加、移动、改变或移除的方法和属性,都是通过文档对象模型来获得的(DOM)。

在 1998 年,W3C 发布了第一级的 DOM 规范。这个规范允许访问和操作 HTML 页面中的每一个单独的元素。

所有的浏览器都执行了这个标准,因此,DOM 的兼容性问题也几乎难觅踪影了。

DOM 可被 JavaScript 用来读取、改变 HTML、XHTML 以及 XML 文档。

DOM 被分为不同的部分(核心、XML及HTML)和级别(DOM Level 1/2/3):

Core DOM

定义了一套标准的针对任何结构化文档的对象

XML DOM

定义了一套标准的针对 XML 文档的对象

HTML DOM

定义了一套标准的针对 HTML 文档的对象。

HTML DOM 节点

· Previous Page

· Next Page

HTML 文档中的每个成分都是一个节点。

节点

根据 DOM,HTML 文档中的每个成分都是一个节点。

DOM 是这样规定的:

· 整个文档是一个文档节点

· 每个 HTML 标签是一个元素节点

· 包含在 HTML 元素中的文本是文本节点

· 每一个 HTML 属性是一个属性节点

· 注释属于注释节点

Node 层次

节点彼此都有等级关系。

HTML 文档中的所有节点组成了一个文档树(或节点树)。HTML 文档中的每个元素、属性、文本等都代表着树中的一个节点。树起始于文档节点,并由此继续伸出枝条,直到处于这棵树最低级别的所有文本节点为止。

下面这个图片表示一个文档树(节点树):

 

HTML DOM 节点树

· Previous Page

· Next Page

一棵节点树中的所有节点彼此都是有关系的。

文档树(节点数)

请看下面这个HTML文档:

  

    DOM Tutorial 

   

   

    

DOM Lesson one

 

    

Hello world!

 

   

上面所有的节点彼此间都存在关系。

除文档节点之外的每个节点都有父节点。举例, 和  的父节点是  节点,文本节点 "Hello world!" 的父节点是 

 节点。

大部分元素节点都有子节点。比方说, 节点有一个子节点: 节点。<title> 节点也有一个子节点:文本节点 "DOM Tutorial"。</p> <p>当节点分享同一个父节点时,它们就是同辈(同级节点)。比方说,<h1> 和 <p>是同辈,因为它们的父节点均是 <body> 节点。</p> <p>节点也可以拥有后代,后代指某个节点的所有子节点,或者这些子节点的子节点,以此类推。比方说,所有的文本节点都是 <html>节点的后代,而第一个文本节点是 <head> 节点的后代。</p> <p>节点也可以拥有先辈。先辈是某个节点的父节点,或者父节点的父节点,以此类推。比方说,所有的文本节点都可把 <html> 节点作为先辈节点。</p> <p>HTML DOM 访问节点</p> <p>· <span style="color:#900b09;">Previous Page</span></p> <p>· <span style="color:#900b09;">Next Page</span></p> <p>通过 DOM,您可访问 HTML 文档中的每个节点。</p> <p>查找并访问节点</p> <p>你可通过若干种方法来查找您希望操作的元素:</p> <p>· 通过使用 getElementById() 和 getElementsByTagName() 方法</p> <p>· 通过使用一个元素节点的 parentNode、firstChild 以及 lastChild 属性</p> <p>getElementById() 和 getElementsByTagName()</p> <p>getElementById() 和 getElementsByTagName() 这两种方法,可查找整个 HTML 文档中的任何 HTML 元素。</p> <p>这两种方法会忽略文档的结构。假如您希望查找文档中所有的 <p> 元素,getElementsByTagName() 会把它们全部找到,不管 <p> 元素处于文档中的哪个层次。同时,getElementById() 方法也会返回正确的元素,不论它被隐藏在文档结构中的什么位置。</p> <p>这两种方法会像您提供任何你所需要的 HTML 元素,不论它们在文档中所处的位置!</p> <p>getElementById() 可通过指定的 ID 来返回元素:</p> <p>getElementById() 语法</p> <p>document.getElementById("ID"); </p> <p>注释:getElementById() 无法工作在 XML 中。在 XML 文档中,您必须通过拥有类型 id 的属性来进行搜索,而此类型必须在 XML DTD 中进行声明。</p> <p>getElementsByTagName() 方法会使用指定的标签名返回所有的元素(作为一个节点列表),这些元素是您在使用此方法时所处的元素的后代。</p> <p>getElementsByTagName() 可被用于任何的 HTML 元素:</p> <p>getElementsByTagName() 语法</p> <p>document.getElementsByTagName("标签名称"); </p> <p>或者:</p> <p>document.getElementById('ID').getElementsByTagName("标签名称"); </p> <p>实例 1</p> <p>下面这个例子会返回文档中所有 <p> 元素的一个节点列表:</p> <p>document.getElementsByTagName("p"); </p> <p>实例 2</p> <p>下面这个例子会返回所有 <p> 元素的一个节点列表,且这些 <p> 元素必须是 id 为 "maindiv" 的元素的后代:</p> <p>document.getElementById('maindiv').getElementsByTagName("p"); </p> <p>节点列表(nodeList)</p> <p>当我们使用节点列表时,通常要把此列表保存在一个变量中,就像这样:</p> <p>var x=document.getElementsByTagName("p");</p> <p>现在,变量 x 包含着页面中所有 <p> 元素的一个列表,并且我们可以通过它们的索引号来访问这些 <p> 元素。</p> <p>注释:索引号从 0 开始。</p> <p>您可以通过使用 length 属性来循环遍历节点列表:</p> <p>var x=document.getElementsByTagName("p");</p> <p>for (var i=0;i<x.length;i++)</p> <p>  { </p> <p>  // do something with each paragraph</p> <p>  }</p> <p>您也可以通过索引号来访问某个具体的元素。</p> <p>要访问第三个 <p> 元素,您可以这么写:</p> <p>var y=x[2];</p> <p>parentNode、firstChild以及lastChild</p> <p>这三个属性 parentNode、firstChild 以及 lastChild 可遵循文档的结构,在文档中进行“短距离的旅行”。</p> <p>请看下面这个 HTML 片段:</p> <p><table></p> <p>  <tr></p> <p>    <td>John</td></p> <p>    <td>Doe</td></p> <p>    <td>Alaska</td></p> <p>  </tr></p> <p></table></p> <p>在上面的HTML代码中,第一个 <td> 是 <tr> 元素的首个子元素(firstChild),而最后一个 <td> 是 <tr>元素的最后一个子元素(lastChild)。</p> <p>此外,<tr> 是每个 <td>元 素的父节点(parentNode)。</p> <p>对 firstChild 最普遍的用法是访问某个元素的文本:</p> <p>var x=[a paragraph];</p> <p>var text=x.firstChild.nodeValue; </p> <p>parentNode 属性常被用来改变文档的结构。假设您希望从文档中删除带有 id 为 "maindiv" 的节点:</p> <p>var x=document.getElementById("maindiv");</p> <p>x.parentNode.removeChild(x); </p> <p>首先,您需要找到带有指定 id 的节点,然后移至其父节点并执行 removeChild() 方法。</p> <p>根节点</p> <p>有两种特殊的文档属性可用来访问根节点:</p> <p>· document.documentElement</p> <p>· document.body</p> <p>第一个属性可返回存在于 XML 以及 HTML 文档中的文档根节点。</p> <p>第二个属性是对 HTML 页面的特殊扩展,提供了对 <body> 标签的直接访问。</p> <p>HTML DOM 节点信息</p> <p>· <span style="color:#900b09;">Previous Page</span></p> <p>· <span style="color:#900b09;">Next Page</span></p> <p>nodeName、nodeValue 以及 nodeType 包含有关于节点的信息。</p> <p>节点信息</p> <p>每个节点都拥有包含着关于节点某些信息的属性。这些属性是:</p> <p>· nodeName(节点名称)</p> <p>· nodeValue(节点值)</p> <p>· nodeType(节点类型)</p> <p>nodeName</p> <p>nodeName 属性含有某个节点的名称。</p> <p>· 元素节点的 nodeName 是标签名称</p> <p>· 属性节点的 nodeName 是属性名称</p> <p>· 文本节点的 nodeName 永远是 #text</p> <p>· 文档节点的 nodeName 永远是 #document</p> <p>注释:nodeName 所包含的 XML 元素的标签名称永远是大写的</p> <p>nodeValue</p> <p>对于文本节点,nodeValue 属性包含文本。</p> <p>对于属性节点,nodeValue 属性包含属性值。</p> <p>nodeValue 属性对于文档节点和元素节点是不可用的。</p> <p>nodeType</p> <p>nodeType 属性可返回节点的类型。</p> <p>最重要的节点类型是:</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>元素类型</p> </td> <td style="background-color:#cccccc;"> <p>节点类型</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>元素</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>属性</p> </td> <td style="background-color:#efefef;"> <p>2</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>文本</p> </td> <td style="background-color:#efefef;"> <p>3</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>注释</p> </td> <td style="background-color:#efefef;"> <p>8</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>文档</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> </tbody> </table> <p>HTML DOM 参考手册</p> <p>· <span style="color:#900b09;">Previous Page</span></p> <p>· <span style="color:#900b09;">Next Page</span></p> <p>Browser 对象参考手册</p> <p>点击以下链接,可以获得以下对象的更多信息,包括它们的集合、属性、方法以及事件。其中包含大量实例!</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>对象</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>Window</p> </td> <td style="background-color:#efefef;"> <p>JavaScript 层级中的顶层对象,表示浏览器窗口。</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>Navigator</p> </td> <td style="background-color:#efefef;"> <p>包含客户端浏览器的信息。</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>Screen</p> </td> <td style="background-color:#efefef;"> <p>包含客户端显示屏的信息。</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>History</p> </td> <td style="background-color:#efefef;"> <p>包含了浏览器窗口访问过的 URL。</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>Location</p> </td> <td style="background-color:#efefef;"> <p>包含了当前 URL 的信息。</p> </td> </tr> </tbody> </table> <p>HTML DOM 对象参考手册</p> <p>请点击下面的链接,学习更多有关对象及其集合、属性、方法和事件的知识。其中包含大量实例!</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>对象</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>Document</p> </td> <td style="background-color:#efefef;"> <p>代表整个 HTML 文档,可被用来访问页面中的所有元素</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>Anchor</p> </td> <td style="background-color:#efefef;"> <p>代表 <a> 元素</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>Area</p> </td> <td style="background-color:#efefef;"> <p>代表图像映射中的 <area> 元素</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>Base</p> </td> <td style="background-color:#efefef;"> <p>代表 <base> 元素</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>Body</p> </td> <td style="background-color:#efefef;"> <p>代表 <body> 元素</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>Button</p> </td> <td style="background-color:#efefef;"> <p>代表 <button> 元素</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>Event</p> </td> <td style="background-color:#efefef;"> <p>代表某个事件的状态</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>Form</p> </td> <td style="background-color:#efefef;"> <p>代表 <form> 元素</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>Frame</p> </td> <td style="background-color:#efefef;"> <p>代表 <frame> 元素</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>Frameset</p> </td> <td style="background-color:#efefef;"> <p>代表 <frameset> 元素</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>Iframe</p> </td> <td style="background-color:#efefef;"> <p>代表 <iframe> 元素</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>Image</p> </td> <td style="background-color:#efefef;"> <p>代表 <img> 元素</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>Input button</p> </td> <td style="background-color:#efefef;"> <p>代表 HTML 表单中的一个按钮</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>Input checkbox</p> </td> <td style="background-color:#efefef;"> <p>代表 HTML 表单中的复选框</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>Input file</p> </td> <td style="background-color:#efefef;"> <p>代表 HTML 表单中的文件上传</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>Input hidden</p> </td> <td style="background-color:#efefef;"> <p>代表 HTML 表单中的隐藏域</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>Input password</p> </td> <td style="background-color:#efefef;"> <p>代表 HTML 表单中的密码域</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>Input radio</p> </td> <td style="background-color:#efefef;"> <p>代表 HTML 表单中的单选按钮</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>Input reset</p> </td> <td style="background-color:#efefef;"> <p>代表 HTML 表单中的重置按钮</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>Input submit</p> </td> <td style="background-color:#efefef;"> <p>代表 HTML 表单中的确认按钮</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>Input text</p> </td> <td style="background-color:#efefef;"> <p>代表 HTML 表单中的文本输入域(文本框)</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>Link</p> </td> <td style="background-color:#efefef;"> <p>代表 <link> 元素</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>Meta</p> </td> <td style="background-color:#efefef;"> <p>代表 <meta> 元素</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>Object</p> </td> <td style="background-color:#efefef;"> <p>代表 <Object> 元素</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>Option</p> </td> <td style="background-color:#efefef;"> <p>代表 <option> 元素</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>Select</p> </td> <td style="background-color:#efefef;"> <p>代表 HTML 表单中的选择列表</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>Style</p> </td> <td style="background-color:#efefef;"> <p>代表单独的样式声明</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>Table</p> </td> <td style="background-color:#efefef;"> <p>代表 <table> 元素</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>TableData</p> </td> <td style="background-color:#efefef;"> <p>代表 <td> 元素</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>TableRow</p> </td> <td style="background-color:#efefef;"> <p>代表 <tr> 元素</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>Textarea</p> </td> <td style="background-color:#efefef;"> <p>代表 <textarea> 元素</p> </td> </tr> </tbody> </table> <p> </p> <p>Window 对象</p> <p>Window 对象</p> <p>Window 对象表示浏览器中打开的窗口。</p> <p>如果文档包含框架(frame 或 iframe 标签),浏览器会为 HTML 文档创建一个 window 对象,并为每个框架创建一个额外的 window 对象。</p> <p>注释:没有应用于 window 对象的公开标准,不过所有浏览器都支持该对象。</p> <p>IE: Internet Explorer, F: Firefox, O: Opera.</p> <p>Window 对象集合</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>集合</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>frames[]</p> </td> <td style="background-color:#efefef;"> <p>返回窗口中所有命名的框架。</p> <p>该集合是 Window 对象的数组,每个 Window 对象在窗口中含有一个框架或 <iframe>。属性 frames.length 存放数组 frames[] 中含有的元素个数。注意,frames[] 数组中引用的框架可能还包括框架,它们自己也具有 frames[] 数组。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> </tbody> </table> <p>Window 对象属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>closed</p> </td> <td style="background-color:#efefef;"> <p>返回窗口是否已被关闭。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>defaultStatus</p> </td> <td style="background-color:#efefef;"> <p>设置或返回窗口状态栏中的默认文本。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>document</p> </td> <td style="background-color:#efefef;"> <p>对 Document 对象的只读引用。请参阅 Document 对象。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>history</p> </td> <td style="background-color:#efefef;"> <p>对 History 对象的只读引用。请参数 History 对象。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>innerheight</p> </td> <td style="background-color:#efefef;"> <p>返回窗口的文档显示区的高度。</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>innerwidth</p> </td> <td style="background-color:#efefef;"> <p>返回窗口的文档显示区的宽度。</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>length</p> </td> <td style="background-color:#efefef;"> <p>设置或返回窗口中的框架数量。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>location</p> </td> <td style="background-color:#efefef;"> <p>用于窗口或框架的 Location 对象。请参阅 Location 对象。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>name</p> </td> <td style="background-color:#efefef;"> <p>设置或返回窗口的名称。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>Navigator</p> </td> <td style="background-color:#efefef;"> <p>对 Navigator 对象的只读引用。请参数 Navigator 对象。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>opener</p> </td> <td style="background-color:#efefef;"> <p>返回对创建此窗口的窗口的引用。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>outerheight</p> </td> <td style="background-color:#efefef;"> <p>返回窗口的外部高度。</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>outerwidth</p> </td> <td style="background-color:#efefef;"> <p>返回窗口的外部宽度。</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>pageXOffset</p> </td> <td style="background-color:#efefef;"> <p>设置或返回当前页面相对于窗口显示区左上角的 X 位置。</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>pageYOffset</p> </td> <td style="background-color:#efefef;"> <p>设置或返回当前页面相对于窗口显示区左上角的 Y 位置。</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>parent</p> </td> <td style="background-color:#efefef;"> <p>返回父窗口。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>Screen</p> </td> <td style="background-color:#efefef;"> <p>对 Screen 对象的只读引用。请参数 Screen 对象。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>self</p> </td> <td style="background-color:#efefef;"> <p>返回对当前窗口的引用。等价于 Window 属性。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>status</p> </td> <td style="background-color:#efefef;"> <p>设置窗口状态栏的文本。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>top</p> </td> <td style="background-color:#efefef;"> <p>返回最顶层的先辈窗口。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>window</p> </td> <td style="background-color:#efefef;"> <p>window 属性等价于 self 属性,它包含了对窗口自身的引用。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>· screenLeft</p> <p>· screenTop</p> <p>· screenX</p> <p>· screenY</p> </td> <td style="background-color:#efefef;"> <p>只读整数。声明了窗口的左上角在屏幕上的的 x 坐标和 y 坐标。IE、Safari 和 Opera 支持 screenLeft 和 screenTop,而 Firefox 和 Safari 支持 screenX 和 screenY。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> </tbody> </table> <p>Window 对象方法</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>方法</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>alert()</p> </td> <td style="background-color:#efefef;"> <p>显示带有一段消息和一个确认按钮的警告框。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>blur()</p> </td> <td style="background-color:#efefef;"> <p>把键盘焦点从顶层窗口移开。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>clearInterval()</p> </td> <td style="background-color:#efefef;"> <p>取消由 setInterval() 设置的 timeout。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>clearTimeout()</p> </td> <td style="background-color:#efefef;"> <p>取消由 setTimeout() 方法设置的 timeout。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>close()</p> </td> <td style="background-color:#efefef;"> <p>关闭浏览器窗口。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>confirm()</p> </td> <td style="background-color:#efefef;"> <p>显示带有一段消息以及确认按钮和取消按钮的对话框。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>createPopup()</p> </td> <td style="background-color:#efefef;"> <p>创建一个 pop-up 窗口。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>focus()</p> </td> <td style="background-color:#efefef;"> <p>把键盘焦点给予一个窗口。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>moveBy()</p> </td> <td style="background-color:#efefef;"> <p>可相对窗口的当前坐标把它移动指定的像素。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>moveTo()</p> </td> <td style="background-color:#efefef;"> <p>把窗口的左上角移动到一个指定的坐标。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>open()</p> </td> <td style="background-color:#efefef;"> <p>打开一个新的浏览器窗口或查找一个已命名的窗口。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>print()</p> </td> <td style="background-color:#efefef;"> <p>打印当前窗口的内容。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>prompt()</p> </td> <td style="background-color:#efefef;"> <p>显示可提示用户输入的对话框。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>resizeBy()</p> </td> <td style="background-color:#efefef;"> <p>按照指定的像素调整窗口的大小。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>resizeTo()</p> </td> <td style="background-color:#efefef;"> <p>把窗口的大小调整到指定的宽度和高度。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1.5</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>scrollBy()</p> </td> <td style="background-color:#efefef;"> <p>按照指定的像素值来滚动内容。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>scrollTo()</p> </td> <td style="background-color:#efefef;"> <p>把内容滚动到指定的坐标。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>setInterval()</p> </td> <td style="background-color:#efefef;"> <p>按照指定的周期(以毫秒计)来调用函数或计算表达式。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>setTimeout()</p> </td> <td style="background-color:#efefef;"> <p>在指定的毫秒数后调用函数或计算表达式。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> </tbody> </table> <p>Window 对象描述</p> <p>Window 对象表示一个浏览器窗口或一个框架。在客户端 JavaScript 中,Window 对象是全局对象,所有的表达式都在当前的环境中计算。也就是说,要引用当前窗口根本不需要特殊的语法,可以把那个窗口的属性作为全局变量来使用。例如,可以只写 <span style="color:#900b09;">document</span>,而不必写 window.document。</p> <p>同样,可以把当前窗口对象的方法当作函数来使用,如只写 alert(),而不必写 Window.alert()。</p> <p>除了上面列出的属性和方法,Window 对象还实现了核心 JavaScript 所定义的所有全局属性和方法。</p> <p>Window 对象的 window 属性和 <span style="color:#900b09;">self 属性</span>引用的都是它自己。当你想明确地引用当前窗口,而不仅仅是隐式地引用它时,可以使用这两个属性。除了这两个属性之外,parent 属性、top 属性以及 frame[] 数组都引用了与当前 Window 对象相关的其他 Window 对象。</p> <p>要引用窗口中的一个框架,可以使用如下语法:</p> <p>frame[i] <span style="color:#999999;">//当前窗口的框架</span></p> <p>self.frame[i] <span style="color:#999999;">//当前窗口的框架</span></p> <p>w.frame[i] <span style="color:#999999;">//窗口 w 的框架</span></p> <p>要引用一个框架的父窗口(或父框架),可以使用下面的语法:</p> <p>parent <span style="color:#999999;">//当前窗口的父窗口</span></p> <p>self.parent <span style="color:#999999;">//当前窗口的父窗口</span></p> <p>w.parent  <span style="color:#999999;">//窗口 w 的父窗口</span></p> <p>要从顶层窗口含有的任何一个框架中引用它,可以使用如下语法:</p> <p>top <span style="color:#999999;">//当前框架的顶层窗口</span></p> <p>self.top <span style="color:#999999;">//当前框架的顶层窗口</span></p> <p>f.top <span style="color:#999999;">//框架 f 的顶层窗口</span></p> <p>新的顶层浏览器窗口由方法 Window.open() 创建。当调用该方法时,应把 open() 调用的返回值存储在一个变量中,然后使用那个变量来引用新窗口。新窗口的 <span style="color:#900b09;">opener 属性</span>反过来引用了打开它的那个窗口。</p> <p>一般来说,Window 对象的方法都是对浏览器窗口或框架进行某种操作。而 <span style="color:#900b09;">alert() 方法</span>、<span style="color:#900b09;">confirm() 方法</span>和 <span style="color:#900b09;">prompt 方法</span>则不同,它们通过简单的对话框与用户进行交互。</p> <p>Navigator 对象</p> <p>Navigator 对象</p> <p>Navigator 对象包含有关浏览器的信息。</p> <p>注释:没有应用于 navigator 对象的公开标准,不过所有浏览器都支持该对象。</p> <p>IE: Internet Explorer, F: Firefox, O: Opera.</p> <p>Navigator 对象集合</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>集合</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>plugins[]</p> </td> <td style="background-color:#efefef;"> <p>返回对文档中所有嵌入式对象的引用。</p> <p>该集合是一个 Plugin 对象的数组,其中的元素代表浏览器已经安装的插件。Plug-in 对象提供的是有关插件的信息,其中包括它所支持的 MIME 类型的列表。</p> <p>虽然 plugins[] 数组是由 IE 4 定义的,但是在 IE 4 中它却总是空的,因为 IE 4 不支持插件和 Plugin 对象。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> </tbody> </table> <p>Navigator 对象属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>appCodeName</p> </td> <td style="background-color:#efefef;"> <p>返回浏览器的代码名。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>appMinorVersion</p> </td> <td style="background-color:#efefef;"> <p>返回浏览器的次级版本。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>appName</p> </td> <td style="background-color:#efefef;"> <p>返回浏览器的名称。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>appVersion</p> </td> <td style="background-color:#efefef;"> <p>返回浏览器的平台和版本信息。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>browserLanguage</p> </td> <td style="background-color:#efefef;"> <p>返回当前浏览器的语言。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>cookieEnabled</p> </td> <td style="background-color:#efefef;"> <p>返回指明浏览器中是否启用 cookie 的布尔值。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>cpuClass</p> </td> <td style="background-color:#efefef;"> <p>返回浏览器系统的 CPU 等级。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>onLine</p> </td> <td style="background-color:#efefef;"> <p>返回指明系统是否处于脱机模式的布尔值。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>platform</p> </td> <td style="background-color:#efefef;"> <p>返回运行浏览器的操作系统平台。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>systemLanguage</p> </td> <td style="background-color:#efefef;"> <p>返回 OS 使用的默认语言。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>userAgent</p> </td> <td style="background-color:#efefef;"> <p>返回由客户机发送服务器的 user-agent 头部的值。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>userLanguage</p> </td> <td style="background-color:#efefef;"> <p>返回 OS 的自然语言设置。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> </tbody> </table> <p>Navigator 对象方法</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>方法</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>javaEnabled()</p> </td> <td style="background-color:#efefef;"> <p>规定浏览器是否启用 Java。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>taintEnabled()</p> </td> <td style="background-color:#efefef;"> <p>规定浏览器是否启用数据污点 (data tainting)。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> </tbody> </table> <p>Navigator 对象描述</p> <p>Navigator 对象包含的属性描述了正在使用的浏览器。可以使用这些属性进行平台专用的配置。</p> <p>虽然这个对象的名称显而易见的是 Netscape 的 Navigator 浏览器,但其他实现了 JavaScript 的浏览器也支持这个对象。</p> <p>Navigator 对象的实例是唯一的,可以用 Window 对象的 navigator 属性来引用它。</p> <p>Screen 对象</p> <p>Screen 对象</p> <p>Screen 对象包含有关客户端显示屏幕的信息。</p> <p>注释:没有应用于 screen 对象的公开标准,不过所有浏览器都支持该对象。</p> <p>IE: Internet Explorer, F: Firefox, O: Opera.</p> <p>Screen 对象属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>availHeight</p> </td> <td style="background-color:#efefef;"> <p>返回显示屏幕的高度 (除 Windows 任务栏之外)。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>availWidth</p> </td> <td style="background-color:#efefef;"> <p>返回显示屏幕的宽度 (除 Windows 任务栏之外)。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>bufferDepth</p> </td> <td style="background-color:#efefef;"> <p>设置或返回调色板的比特深度。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>colorDepth</p> </td> <td style="background-color:#efefef;"> <p>返回目标设备或缓冲器上的调色板的比特深度。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>deviceXDPI</p> </td> <td style="background-color:#efefef;"> <p>返回显示屏幕的每英寸水平点数。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>deviceYDPI</p> </td> <td style="background-color:#efefef;"> <p>返回显示屏幕的每英寸垂直点数。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>fontSmoothingEnabled</p> </td> <td style="background-color:#efefef;"> <p>返回用户是否在显示控制面板中启用了字体平滑。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>height</p> </td> <td style="background-color:#efefef;"> <p>返回显示屏幕的高度。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>logicalXDPI</p> </td> <td style="background-color:#efefef;"> <p>返回显示屏幕每英寸的水平方向的常规点数。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>logicalYDPI</p> </td> <td style="background-color:#efefef;"> <p>返回显示屏幕每英寸的垂直方向的常规点数。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>pixelDepth</p> </td> <td style="background-color:#efefef;"> <p>返回显示屏幕的颜色分辨率(比特每像素)。</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>updateInterval</p> </td> <td style="background-color:#efefef;"> <p>设置或返回屏幕的刷新率。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>width</p> </td> <td style="background-color:#efefef;"> <p>返回显示器屏幕的宽度。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> </tbody> </table> <p>Screen 对象描述</p> <p>每个 Window 对象的 screen 属性都引用一个 Screen 对象。Screen 对象中存放着有关显示浏览器屏幕的信息。JavaScript 程序将利用这些信息来优化它们的输出,以达到用户的显示要求。例如,一个程序可以根据显示器的尺寸选择使用大图像还是使用小图像,它还可以根据显示器的颜色深度选择使用 16 位色还是使用 8 位色的图形。另外,JavaScript 程序还能根据有关屏幕尺寸的信息将新的浏览器窗口定位在屏幕中间。</p> <p>History 对象</p> <p>History 对象</p> <p>History 对象包含用户(在浏览器窗口中)访问过的 URL。</p> <p>History 对象是 window 对象的一部分,可通过 window.history 属性对其进行访问。</p> <p>注释:没有应用于 History 对象的公开标准,不过所有浏览器都支持该对象。</p> <p>IE: Internet Explorer, F: Firefox, O: Opera.</p> <p>History 对象属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>length</p> </td> <td style="background-color:#efefef;"> <p>返回浏览器历史列表中的 URL 数量。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> </tbody> </table> <p>History 对象方法</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>方法</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>back()</p> </td> <td style="background-color:#efefef;"> <p>加载 history 列表中的前一个 URL。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>forward()</p> </td> <td style="background-color:#efefef;"> <p>加载 history 列表中的下一个 URL。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>go()</p> </td> <td style="background-color:#efefef;"> <p>加载 history 列表中的某个具体页面。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> </tbody> </table> <p>History 对象描述</p> <p>History 对象最初设计来表示窗口的浏览历史。但出于隐私方面的原因,History 对象不再允许脚本访问已经访问过的实际 URL。唯一保持使用的功能只有 <span style="color:#900b09;">back()</span>、<span style="color:#900b09;">forward()</span> 和 <span style="color:#900b09;">go()</span> 方法。</p> <p>例子</p> <p>下面一行代码执行的操作与单击后退按钮执行的操作一样:</p> <p>history.back()</p> <p>下面一行代码执行的操作与单击两次后退按钮执行的操作一样:</p> <p>history.go(-2)</p> <p>Location 对象</p> <p>Location 对象</p> <p>Location 对象包含有关当前 URL 的信息。</p> <p>Location 对象是 Window 对象的一个部分,可通过 window.location 属性来访问。</p> <p>例子</p> <p><span style="color:#900b09;">把用户带到一个新的地址</span></p> <p>IE: Internet Explorer, F: Firefox, O: Opera.</p> <p>Location 对象属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>hash</p> </td> <td style="background-color:#efefef;"> <p>设置或返回从井号 (#) 开始的 URL(锚)。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>host</p> </td> <td style="background-color:#efefef;"> <p>设置或返回主机名和当前 URL 的端口号。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>hostname</p> </td> <td style="background-color:#efefef;"> <p>设置或返回当前 URL 的主机名。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>href</p> </td> <td style="background-color:#efefef;"> <p>设置或返回完整的 URL。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>pathname</p> </td> <td style="background-color:#efefef;"> <p>设置或返回当前 URL 的路径部分。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>port</p> </td> <td style="background-color:#efefef;"> <p>设置或返回当前 URL 的端口号。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>protocol</p> </td> <td style="background-color:#efefef;"> <p>设置或返回当前 URL 的协议。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>search</p> </td> <td style="background-color:#efefef;"> <p>设置或返回从问号 (?) 开始的 URL(查询部分)。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> </tbody> </table> <p>Location 对象方法</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>assign()</p> </td> <td style="background-color:#efefef;"> <p>加载新的文档。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>reload()</p> </td> <td style="background-color:#efefef;"> <p>重新加载当前文档。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>replace()</p> </td> <td style="background-color:#efefef;"> <p>用新的文档替换当前文档。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> </tr> </tbody> </table> <p>Location 对象描述</p> <p>Location 对象存储在 Window 对象的 Location 属性中,表示那个窗口中当前显示的文档的 Web 地址。它的 <span style="color:#900b09;">href 属性</span>存放的是文档的完整 URL,其他属性则分别描述了 URL 的各个部分。这些属性与 Anchor 对象(或 Area 对象)的 URL 属性非常相似。当一个 Location 对象被转换成字符串,href 属性的值被返回。这意味着你可以使用表达式 location 来替代 location.href。</p> <p>不过 Anchor 对象表示的是文档中的超链接,Location 对象表示的却是浏览器当前显示的文档的 URL(或位置)。但是 Location 对象所能做的远远不止这些,它还能控制浏览器显示的文档的位置。如果把一个含有 URL 的字符串赋予 Location 对象或它的 href 属性,浏览器就会把新的 URL 所指的文档装载进来,并显示出来。</p> <p>除了设置 location 或 location.href 用完整的 URL 替换当前的 URL 之外,还可以修改部分 URL,只需要给 Location 对象的其他属性赋值即可。这样做就会创建新的 URL,其中的一部分与原来的 URL 不同,浏览器会将它装载并显示出来。例如,假设设置了Location对象的 <span style="color:#900b09;">hash 属性</span>,那么浏览器就会转移到当前文档中的一个指定的位置。同样,如果设置了 <span style="color:#900b09;">search 属性</span>,那么浏览器就会重新装载附加了新的查询字符串的 URL。</p> <p>除了 URL 属性外,Location 对象的 <span style="color:#900b09;">reload() 方法</span>可以重新装载当前文档,<span style="color:#900b09;">replace()</span> 可以装载一个新文档而无须为它创建一个新的历史记录,也就是说,在浏览器的历史列表中,新文档将替换当前文档。</p> <p> </p> <p>HTML DOM 对象参考手册</p> <p>HTML DOM Document 对象</p> <p>Document 对象</p> <p>每个载入浏览器的 HTML 文档都会成为 Document 对象。</p> <p>Document 对象使我们可以从脚本中对 HTML 页面中的所有元素进行访问。</p> <p><span style="color:#ff9955;">提示:</span>Document 对象是 Window 对象的一部分,可通过 window.document 属性对其进行访问。</p> <p>IE: Internet Explorer, F: Firefox, O: Opera, W3C: W3C 标准.</p> <p>Document 对象集合</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>集合</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>all[]</p> </td> <td style="background-color:#efefef;"> <p>提供对文档中所有 HTML 元素的访问。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>anchors[]</p> </td> <td style="background-color:#efefef;"> <p>返回对文档中所有 Anchor 对象的引用。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>applets</p> </td> <td style="background-color:#efefef;"> <p>返回对文档中所有 Applet 对象的引用。</p> </td> <td style="background-color:#efefef;"> <p>-</p> </td> <td style="background-color:#efefef;"> <p>-</p> </td> <td style="background-color:#efefef;"> <p>-</p> </td> <td style="background-color:#efefef;"> <p>-</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>forms[]</p> </td> <td style="background-color:#efefef;"> <p>返回对文档中所有 Form 对象引用。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>images[]</p> </td> <td style="background-color:#efefef;"> <p>返回对文档中所有 Image 对象引用。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>links[]</p> </td> <td style="background-color:#efefef;"> <p>返回对文档中所有 Area 和 Link 对象引用。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Document 对象属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>body</p> </td> <td style="background-color:#efefef;"> <p>提供对 <body> 元素的直接访问。</p> <p>对于定义了框架集的文档,该属性引用最外层的 <frameset>。</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>cookie</p> </td> <td style="background-color:#efefef;"> <p>设置或返回与当前文档有关的所有 cookie。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>domain</p> </td> <td style="background-color:#efefef;"> <p>返回当前文档的域名。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>lastModified</p> </td> <td style="background-color:#efefef;"> <p>返回文档被最后修改的日期和时间。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>referrer</p> </td> <td style="background-color:#efefef;"> <p>返回载入当前文档的文档的 URL。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>title</p> </td> <td style="background-color:#efefef;"> <p>返回当前文档的标题。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>URL</p> </td> <td style="background-color:#efefef;"> <p>返回当前文档的 URL。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Document 对象方法</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>方法</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>close()</p> </td> <td style="background-color:#efefef;"> <p>关闭用 document.open() 方法打开的输出流,并显示选定的数据。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>getElementById()</p> </td> <td style="background-color:#efefef;"> <p>返回对拥有指定 id 的第一个对象的引用。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>getElementsByName()</p> </td> <td style="background-color:#efefef;"> <p>返回带有指定名称的对象集合。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>getElementsByTagName()</p> </td> <td style="background-color:#efefef;"> <p>返回带有指定标签名的对象集合。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>open()</p> </td> <td style="background-color:#efefef;"> <p>打开一个流,以收集来自任何 document.write() 或 document.writeln() 方法的输出。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>write()</p> </td> <td style="background-color:#efefef;"> <p>向文档写 HTML 表达式 或 JavaScript 代码。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>writeln()</p> </td> <td style="background-color:#efefef;"> <p>等同于 write() 方法,不同的是在每个表达式之后写一个换行符。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Document 对象描述</p> <p>HTMLDocument 接口对 DOM Document 接口进行了扩展,定义 HTML 专用的属性和方法。</p> <p>很多属性和方法都是 HTMLCollection 对象(实际上是可以用数组或名称索引的只读数组),其中保存了对锚、表单、链接以及其他可脚本元素的引用。</p> <p>这些集合属性都源自于 0 级 DOM。它们已经被 <span style="color:#900b09;">Document.getElementsByTagName()</span> 所取代,但是仍然常常使用,因为他们很方便。</p> <p><span style="color:#900b09;">write() 方法</span>值得注意,在文档载入和解析的时候,它允许一个脚本向文档中插入动态生成的内容。</p> <p>注意,在 1 级 DOM 中,HTMLDocument 定义了一个名为 <span style="color:#900b09;">getElementById()</span> 的非常有用的方法。在 2 级 DOM 中,该方法已经被转移到了 Document 接口,它现在由 HTMLDocument 继承而不是由它定义了。</p> <p>HTML DOM Anchor 对象</p> <p>Anchor 对象</p> <p>Anchor 对象表示 HTML 超链接。</p> <p>在 HTML 文档中 <a> 标签每出现一次,就会创建 Anchor 对象。</p> <p>锚可用于创建指向另一个文档的链接(通过 href 属性),或者创建文档内的书签(通过 name 属性)。 </p> <p>您可以通过搜索 Document 对象中的 anchors[] 数组来访问锚,或者使用 document.getElementById()。</p> <p>IE: Internet Explorer, F: Firefox, O: Opera, W3C: W3C 标准.</p> <p>Anchor 对象的属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>accessKey</p> </td> <td style="background-color:#efefef;"> <p>设置或返回访问一个链接的快捷键。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>charset</p> </td> <td style="background-color:#efefef;"> <p>设置或返回被链接资源的字符集。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>coords</p> </td> <td style="background-color:#efefef;"> <p>设置或返回逗号分隔列表,包含了图像映射中链接的坐标。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>href</p> </td> <td style="background-color:#efefef;"> <p>设置或返回被链接资源的 URL。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>hreflang</p> </td> <td style="background-color:#efefef;"> <p>设置或返回被链接资源的语言代码。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>id</p> </td> <td style="background-color:#efefef;"> <p>设置或返回一个链接的 id。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>innerHTML</p> </td> <td style="background-color:#efefef;"> <p>设置或返回一个链接的内容。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>name</p> </td> <td style="background-color:#efefef;"> <p>设置或返回一个链接的名称。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>rel</p> </td> <td style="background-color:#efefef;"> <p>设置或返回当前文档与目标 URL 之间的关系。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>rev</p> </td> <td style="background-color:#efefef;"> <p>设置或返回目标 URL 与之间当前文档的关系。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>shape</p> </td> <td style="background-color:#efefef;"> <p>设置或返回图像映射中某个链接的形状。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>tabIndex</p> </td> <td style="background-color:#efefef;"> <p>设置或返回某个链接的 Tab 键控制次序。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>target</p> </td> <td style="background-color:#efefef;"> <p>设置或返回在何处打开链接。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>type</p> </td> <td style="background-color:#efefef;"> <p>设置或返回被链接资源的 MIME 类型。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>标准属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>className</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 class 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>dir</p> </td> <td style="background-color:#efefef;"> <p>设置或返回文本的方向。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>lang</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的语言代码。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>title</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 title 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Anchor 对象的方法</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>方法</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>blur()</p> </td> <td style="background-color:#efefef;"> <p>把焦点从链接上移开。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>focus()</p> </td> <td style="background-color:#efefef;"> <p>给链接应用焦点。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>HTML DOM Area 对象</p> <p>Area 对象</p> <p>Area 对象代表图像映射的一个区域(图像映射指的是带有可点击区域的图像)</p> <p>在 HTML 文档中 <area> 标签每出现一次,就会创建一个 Area 对象。</p> <p>IE: Internet Explorer, F: Firefox, O: Opera, W3C: W3C 标准.</p> <p>Area 对象的属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>accessKey</p> </td> <td style="background-color:#efefef;"> <p>设置或返回访问某个区域的快捷键。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>alt</p> </td> <td style="background-color:#efefef;"> <p>设置或返回当浏览器无法显示某个区域时的替换文字。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>coords</p> </td> <td style="background-color:#efefef;"> <p>设置或返回图像映射中可点击区域的坐标。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>hash</p> </td> <td style="background-color:#efefef;"> <p>设置或返回某个区域中 URL 的锚部分。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>host</p> </td> <td style="background-color:#efefef;"> <p>设置或返回某个区域中 URL 的主机名和端口。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>href</p> </td> <td style="background-color:#efefef;"> <p>设置或返回图像映射中链接的 URL。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>id</p> </td> <td style="background-color:#efefef;"> <p>设置或返回某个区域的 id。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>noHref</p> </td> <td style="background-color:#efefef;"> <p>设置或返回某个区域是否应是活动的还是非活动的。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>pathname</p> </td> <td style="background-color:#efefef;"> <p>设置或返回某个区域中的 URL 的路径名。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>protocol</p> </td> <td style="background-color:#efefef;"> <p>设置或返回某个区域中的 URL 的协议。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>search</p> </td> <td style="background-color:#efefef;"> <p>设置或返回某个区域中 URL 的查询字符串部分。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>shape</p> </td> <td style="background-color:#efefef;"> <p>设置或返回图像映射中某个区域的形状。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>tabIndex</p> </td> <td style="background-color:#efefef;"> <p>设置或返回某个区域的 tab 键控制次序。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>target</p> </td> <td style="background-color:#efefef;"> <p>设置或返回在何处打开区域中的 link-URL。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>标准属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>className</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 class 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>dir</p> </td> <td style="background-color:#efefef;"> <p>设置或返回文本的方向。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>lang</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的语言代码。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>title</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 title。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>HTML DOM Base 对象</p> <p>Base 对象</p> <p>Base 对象代表 HTML 的 base 元素。</p> <p>在 HTML 文档中 <base> 每出现一次,Base 对象就会被创建。</p> <p>IE: Internet Explorer, F: Firefox, O: Opera, W3C: W3C 标准.</p> <p>Base 对象属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>href</p> </td> <td style="background-color:#efefef;"> <p>设置或返回针对页面中所有链接的基准 URL。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>id</p> </td> <td style="background-color:#efefef;"> <p>设置或返回 <base> 元素的 id。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>target</p> </td> <td style="background-color:#efefef;"> <p>设置或返回针对页面中所有链接的默认目标框架。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>HTML DOM Body 对象</p> <p>Body 对象</p> <p>Body 对象代表文档的主体 (HTML body) 。</p> <p>IE: Internet Explorer, F: Firefox, O: Opera, W3C: W3C 标准.</p> <p>Body 对象的属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>className</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 class 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>dir</p> </td> <td style="background-color:#efefef;"> <p>设置或返回文本的方向。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>id</p> </td> <td style="background-color:#efefef;"> <p>设置或返回 body 的 id。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>lang</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的语言代码。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>title</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的咨询性的标题。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Button 对象</p> <p>Button 对象代表一个按钮。</p> <p>在 HTML 文档中 <button> 标签每出现一次,Button 对象就会被创建。</p> <p>IE: Internet Explorer, F: Firefox, O: Opera, W3C: W3C 标准.</p> <p>Button 对象的属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>accessKey</p> </td> <td style="background-color:#efefef;"> <p>设置或返回访问某个按钮的快捷键。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>disabled</p> </td> <td style="background-color:#efefef;"> <p>设置或返回是否禁用按钮。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>form</p> </td> <td style="background-color:#efefef;"> <p>返回对包含按钮的表单的引用。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>id</p> </td> <td style="background-color:#efefef;"> <p>设置或返回按钮的 id。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>name</p> </td> <td style="background-color:#efefef;"> <p>设置或返回按钮的名称。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>tabIndex</p> </td> <td style="background-color:#efefef;"> <p>设置或返回按钮的 Tab 键控制次序。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>type</p> </td> <td style="background-color:#efefef;"> <p>返回按钮的表单类型。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>value</p> </td> <td style="background-color:#efefef;"> <p>设置或返回显示在按钮上的文本。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>标准属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>className</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 class 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>dir</p> </td> <td style="background-color:#efefef;"> <p>设置或返回文本的方向。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>lang</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的语言代码。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>title</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 title 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Event 对象</p> <p>Event 对象代表事件的状态,比如事件在其中发生的元素、键盘按键的状态、鼠标的位置、鼠标按钮的状态。</p> <p>事件通常与函数结合使用,函数不会在事件发生前被执行!</p> <p>IE: Internet Explorer, F: Firefox, O: Opera, W3C: W3C 标准.</p> <p>事件句柄 (Event Handlers)</p> <p>HTML 4.0 的新特性之一是能够使 HTML 事件触发浏览器中的行为,比如当用户点击某个 HTML 元素时启动一段 JavaScript。下面是一个属性列表,可将之插入 HTML 标签以定义事件的行为。</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>此事件发生在何时...</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>onabort</p> </td> <td style="background-color:#efefef;"> <p>图像的加载被中断。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>onblur</p> </td> <td style="background-color:#efefef;"> <p>元素失去焦点。</p> </td> <td style="background-color:#efefef;"> <p>3</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>onchange</p> </td> <td style="background-color:#efefef;"> <p>域的内容被改变。</p> </td> <td style="background-color:#efefef;"> <p>3</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>onclick</p> </td> <td style="background-color:#efefef;"> <p>当用户点击某个对象时调用的事件句柄。</p> </td> <td style="background-color:#efefef;"> <p>3</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>ondblclick</p> </td> <td style="background-color:#efefef;"> <p>当用户双击某个对象时调用的事件句柄。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>onerror</p> </td> <td style="background-color:#efefef;"> <p>在加载文档或图像时发生错误。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>onfocus</p> </td> <td style="background-color:#efefef;"> <p>元素获得焦点。</p> </td> <td style="background-color:#efefef;"> <p>3</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>onkeydown</p> </td> <td style="background-color:#efefef;"> <p>某个键盘按键被按下。</p> </td> <td style="background-color:#efefef;"> <p>3</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>onkeypress</p> </td> <td style="background-color:#efefef;"> <p>某个键盘按键被按下并松开。</p> </td> <td style="background-color:#efefef;"> <p>3</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>onkeyup</p> </td> <td style="background-color:#efefef;"> <p>某个键盘按键被松开。</p> </td> <td style="background-color:#efefef;"> <p>3</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>onload</p> </td> <td style="background-color:#efefef;"> <p>一张页面或一幅图像完成加载。</p> </td> <td style="background-color:#efefef;"> <p>3</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>onmousedown</p> </td> <td style="background-color:#efefef;"> <p>鼠标按钮被按下。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>onmousemove</p> </td> <td style="background-color:#efefef;"> <p>鼠标被移动。</p> </td> <td style="background-color:#efefef;"> <p>3</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>onmouseout</p> </td> <td style="background-color:#efefef;"> <p>鼠标从某元素移开。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>onmouseover</p> </td> <td style="background-color:#efefef;"> <p>鼠标移到某元素之上。</p> </td> <td style="background-color:#efefef;"> <p>3</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>onmouseup</p> </td> <td style="background-color:#efefef;"> <p>鼠标按键被松开。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>onreset</p> </td> <td style="background-color:#efefef;"> <p>重置按钮被点击。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>onresize</p> </td> <td style="background-color:#efefef;"> <p>窗口或框架被重新调整大小。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>onselect</p> </td> <td style="background-color:#efefef;"> <p>文本被选中。</p> </td> <td style="background-color:#efefef;"> <p>3</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>onsubmit</p> </td> <td style="background-color:#efefef;"> <p>确认按钮被点击。</p> </td> <td style="background-color:#efefef;"> <p>3</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>onunload</p> </td> <td style="background-color:#efefef;"> <p>用户退出页面。</p> </td> <td style="background-color:#efefef;"> <p>3</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>鼠标 / 键盘属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>altKey</p> </td> <td style="background-color:#efefef;"> <p>返回当事件被触发时,"ALT" 是否被按下。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>button</p> </td> <td style="background-color:#efefef;"> <p>返回当事件被触发时,哪个鼠标按钮被点击。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>clientX</p> </td> <td style="background-color:#efefef;"> <p>返回当事件被触发时,鼠标指针的水平坐标。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>clientY</p> </td> <td style="background-color:#efefef;"> <p>返回当事件被触发时,鼠标指针的垂直坐标。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>ctrlKey</p> </td> <td style="background-color:#efefef;"> <p>返回当事件被触发时,"CTRL" 键是否被按下。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>metaKey</p> </td> <td style="background-color:#efefef;"> <p>返回当事件被触发时,"meta" 键是否被按下。</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>relatedTarget</p> </td> <td style="background-color:#efefef;"> <p>返回与事件的目标节点相关的节点。</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>screenX</p> </td> <td style="background-color:#efefef;"> <p>返回当某个事件被触发时,鼠标指针的水平坐标。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>screenY</p> </td> <td style="background-color:#efefef;"> <p>返回当某个事件被触发时,鼠标指针的垂直坐标。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>shiftKey</p> </td> <td style="background-color:#efefef;"> <p>返回当事件被触发时,"SHIFT" 键是否被按下。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>IE 属性</p> <p>除了上面的鼠标/事件属性,IE 浏览器还支持下面的属性:</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>cancelBubble</p> </td> <td style="background-color:#efefef;"> <p>如果事件句柄想阻止事件传播到包容对象,必须把该属性设为 true。</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>fromElement</p> </td> <td style="background-color:#efefef;"> <p>对于 mouseover 和 mouseout 事件,fromElement 引用移出鼠标的元素。</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>keyCode</p> </td> <td style="background-color:#efefef;"> <p>对于 keypress 事件,该属性声明了被敲击的键生成的 Unicode 字符码。对于 keydown 和 keyup 事件,它指定了被敲击的键的虚拟键盘码。虚拟键盘码可能和使用的键盘的布局相关。</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>offsetX,offsetY</p> </td> <td style="background-color:#efefef;"> <p>发生事件的地点在事件源元素的坐标系统中的 x 坐标和 y 坐标。</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>returnValue</p> </td> <td style="background-color:#efefef;"> <p>如果设置了该属性,它的值比事件句柄的返回值优先级高。把这个属性设置为 fasle,可以取消发生事件的源元素的默认动作。</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>srcElement</p> </td> <td style="background-color:#efefef;"> <p>对于生成事件的 Window 对象、Document 对象或 Element 对象的引用。</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>toElement</p> </td> <td style="background-color:#efefef;"> <p>对于 mouseover 和 mouseout 事件,该属性引用移入鼠标的元素。</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>x,y</p> </td> <td style="background-color:#efefef;"> <p>事件发生的位置的 x 坐标和 y 坐标,它们相对于用CSS动态定位的最内层包容元素。</p> </td> </tr> </tbody> </table> <p>标准 Event 属性</p> <p>下面列出了 2 级 DOM 事件标准定义的属性。</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>bubbles</p> </td> <td style="background-color:#efefef;"> <p>返回布尔值,指示事件是否是起泡事件类型。</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>cancelable</p> </td> <td style="background-color:#efefef;"> <p>返回布尔值,指示事件是否可拥可取消的默认动作。</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>currentTarget</p> </td> <td style="background-color:#efefef;"> <p>返回其事件监听器触发该事件的元素。</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>eventPhase</p> </td> <td style="background-color:#efefef;"> <p>返回事件传播的当前阶段。</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>target</p> </td> <td style="background-color:#efefef;"> <p>返回触发此事件的元素(事件的目标节点)。</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>timeStamp</p> </td> <td style="background-color:#efefef;"> <p>返回事件生成的日期和时间。</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>type</p> </td> <td style="background-color:#efefef;"> <p>返回当前 Event 对象表示的事件的名称。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>标准 Event 方法</p> <p>下面列出了 2 级 DOM 事件标准定义的方法。IE 的事件模型不支持这些方法:</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>方法</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>initEvent()</p> </td> <td style="background-color:#efefef;"> <p>初始化新创建的 Event 对象的属性。</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>preventDefault()</p> </td> <td style="background-color:#efefef;"> <p>通知浏览器不要执行与事件关联的默认动作。</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>stopPropagation()</p> </td> <td style="background-color:#efefef;"> <p>不再派发事件。</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Form 对象</p> <p>Form 对象代表一个 HTML 表单。</p> <p>在 HTML 文档中 <form> 每出现一次,Form 对象就会被创建。</p> <p>IE: Internet Explorer, F: Firefox, O: Opera, W3C: W3C 标准.</p> <p>Form 对象集合</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>集合</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>elements[]</p> </td> <td style="background-color:#efefef;"> <p>包含表单中所有元素的数组。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Form 对象属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>acceptCharset</p> </td> <td style="background-color:#efefef;"> <p>服务器可接受的字符集。</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>action</p> </td> <td style="background-color:#efefef;"> <p>设置或返回表单的 action 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>enctype</p> </td> <td style="background-color:#efefef;"> <p>设置或返回表单用来编码内容的 MIME 类型。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>id</p> </td> <td style="background-color:#efefef;"> <p>设置或返回表单的 id。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>length</p> </td> <td style="background-color:#efefef;"> <p>返回表单中的元素数目。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>method</p> </td> <td style="background-color:#efefef;"> <p>设置或返回将数据发送到服务器的 HTTP 方法。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>name</p> </td> <td style="background-color:#efefef;"> <p>设置或返回表单的名称。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>target</p> </td> <td style="background-color:#efefef;"> <p>设置或返回表单提交结果的 Frame 或 Window 名。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>标准属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>className</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 class 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>dir</p> </td> <td style="background-color:#efefef;"> <p>设置或返回文本的方向。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>lang</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的语言代码。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>title</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 title 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Form 对象方法</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>方法</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>reset()</p> </td> <td style="background-color:#efefef;"> <p>把表单的所有输入元素重置为它们的默认值。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>submit()</p> </td> <td style="background-color:#efefef;"> <p>提交表单。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Form 对象事件句柄</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>事件句柄</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>onreset</p> </td> <td style="background-color:#efefef;"> <p>在重置表单元素之前调用。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>onsubmit</p> </td> <td style="background-color:#efefef;"> <p>在提交表单之前调用。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>HTML DOM Frame 对象</p> <p>Frame 对象</p> <p>Frame 对象代表一个 HTML 框架。</p> <p>在 HTML 文档中 <frame> 每出现一次,就会创建一个 Frame对象。</p> <p>IE: Internet Explorer, F: Firefox, O: Opera, W3C: W3C 标准.</p> <p>Frame 对象的属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>contentDocument</p> </td> <td style="background-color:#efefef;"> <p>容纳框架的内容的文档。</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>frameBorder</p> </td> <td style="background-color:#efefef;"> <p>设置或返回是否显示框架周围的边框。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>id</p> </td> <td style="background-color:#efefef;"> <p>设置或返回框架的 id。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>longDesc</p> </td> <td style="background-color:#efefef;"> <p>设置或返回指向包含框架内容描述文档的 URL。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>marginHeight</p> </td> <td style="background-color:#efefef;"> <p>设置或返回框架的顶部和底部页空白。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>marginWidth</p> </td> <td style="background-color:#efefef;"> <p>设置或返回框架的左边缘和右边缘的空白。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>name</p> </td> <td style="background-color:#efefef;"> <p>设置或返回框架的名称。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>noResize</p> </td> <td style="background-color:#efefef;"> <p>设置或返回框架是否可调整大小。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>scrolling</p> </td> <td style="background-color:#efefef;"> <p>设置或返回框架是否可拥有滚动条。</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>src</p> </td> <td style="background-color:#efefef;"> <p>设置或返回应被加载到框架中的文档的 URL。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>标准属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>className</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 class 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>dir</p> </td> <td style="background-color:#efefef;"> <p>设置或返回文本的方向。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>lang</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的语言代码。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>title</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 title 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Frameset 对象</p> <p>Frameset 对象代表 HTML 框架集。</p> <p>IE: Internet Explorer, F: Firefox, O: Opera, W3C: W3C 标准.</p> <p>Frameset 对象的属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>cols</p> </td> <td style="background-color:#efefef;"> <p>设置或返回框架集中列的数目。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9 </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>id</p> </td> <td style="background-color:#efefef;"> <p>设置或返回框架集的 id。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>rows</p> </td> <td style="background-color:#efefef;"> <p>设置或返回框架集中行的数目。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>标准属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>className</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 class 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>dir</p> </td> <td style="background-color:#efefef;"> <p>设置或返回文本的方向。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>lang</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的语言代码。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>title</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 title 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>IFrame 对象</p> <p>IFrame 对象代表一个 HTML 的内联框架。</p> <p>在 HTML 文档中 <iframe> 每出现一次,一个 IFrame 对象就会被创建。</p> <p>IE: Internet Explorer, F: Firefox, O: Opera, W3C: W3C 标准.</p> <p>IFrame 对象的属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>align</p> </td> <td style="background-color:#efefef;"> <p>根据周围的文字排列 iframe。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>contentDocument</p> </td> <td style="background-color:#efefef;"> <p>容纳框架的内容的文档。</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>frameBorder</p> </td> <td style="background-color:#efefef;"> <p>设置或返回是否显示 iframe 周围的边框。</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>height</p> </td> <td style="background-color:#efefef;"> <p>设置或返回 iframe 的高度。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>id</p> </td> <td style="background-color:#efefef;"> <p>设置或返回 iframe 的 id。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>longDesc</p> </td> <td style="background-color:#efefef;"> <p>设置或返回描述 iframe 内容的文档的 URL。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>marginHeight</p> </td> <td style="background-color:#efefef;"> <p>设置或返回 iframe 的顶部和底部的页空白。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>marginWidth</p> </td> <td style="background-color:#efefef;"> <p>设置或返回 iframe 的左侧和右侧的页空白。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>name</p> </td> <td style="background-color:#efefef;"> <p>设置或返回 iframe 的名称。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>scrolling</p> </td> <td style="background-color:#efefef;"> <p>设置或返回 iframe 是否可拥有滚动条。</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>src</p> </td> <td style="background-color:#efefef;"> <p>设置或返回应载入 iframe 中的文档的 URL。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>width</p> </td> <td style="background-color:#efefef;"> <p>设置或返回 iframe 的宽度。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>标准属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>className</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 class 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>dir</p> </td> <td style="background-color:#efefef;"> <p>设置或返回文本的方向。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>lang</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的语言代码。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>title</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 title 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Image 对象</p> <p>Image 对象代表嵌入的图像。</p> <p><img> 标签每出现一次,一个 Image 对象就会被创建。</p> <p>IE: Internet Explorer, F: Firefox, O: Opera, W3C: W3C 标准.</p> <p>Image 对象的属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>align</p> </td> <td style="background-color:#efefef;"> <p>设置或返回与内联内容的对齐方式。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>alt</p> </td> <td style="background-color:#efefef;"> <p>设置或返回无法显示图像时的替代文本。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>border</p> </td> <td style="background-color:#efefef;"> <p>设置或返回图像周围的边框。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>complete</p> </td> <td style="background-color:#efefef;"> <p>返回浏览器是否已完成对图像的加载。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>height</p> </td> <td style="background-color:#efefef;"> <p>设置或返回图像的高度。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>hspace</p> </td> <td style="background-color:#efefef;"> <p>设置或返回图像左侧和右侧的空白。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>id</p> </td> <td style="background-color:#efefef;"> <p>设置或返回图像的 id。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>isMap</p> </td> <td style="background-color:#efefef;"> <p>返回图像是否是服务器端的图像映射。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>longDesc</p> </td> <td style="background-color:#efefef;"> <p>设置或返回指向包含图像描述的文档的 URL。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>lowsrc</p> </td> <td style="background-color:#efefef;"> <p>设置或返回指向图像的低分辨率版本的 URL。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>name</p> </td> <td style="background-color:#efefef;"> <p>设置或返回图像的名称。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>src</p> </td> <td style="background-color:#efefef;"> <p>设置或返回图像的 URL。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>useMap</p> </td> <td style="background-color:#efefef;"> <p>设置或返回客户端图像映射的 usemap 属性的值。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>vspace</p> </td> <td style="background-color:#efefef;"> <p>设置或返回图像的顶部和底部的空白。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>width</p> </td> <td style="background-color:#efefef;"> <p>设置或返回图像的宽度。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>标准属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>className</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 class 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>title</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 title。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Image 对象的事件句柄</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>事件句柄</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>onabort</p> </td> <td style="background-color:#efefef;"> <p>当用户放弃图像的装载时调用的事件句柄。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>onerror</p> </td> <td style="background-color:#efefef;"> <p>在装载图像的过程中发生错误时调用的事件句柄。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>onload</p> </td> <td style="background-color:#efefef;"> <p>当图像装载完毕时调用的事件句柄。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Button 对象</p> <p>Button 对象代表 HTML 文档中的一个按钮。</p> <p>该元素没有默认的行为,但是必须有一个 onclick 事件句柄以便使用。</p> <p>在 HTML 文档中 <input type="button"> 标签每出现一次,一个 Button 对象 就会被创建。</p> <p>您可以通过遍历表单的 elements[] 数组来访问某个按钮,或者通过使用 document.getElementById()。</p> <p>IE: Internet Explorer, F: Firefox, O: Opera, W3C: W3C 标准.</p> <p>Button 对象的属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>accessKey</p> </td> <td style="background-color:#efefef;"> <p>设置或返回访问按钮的快捷键。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>alt</p> </td> <td style="background-color:#efefef;"> <p>设置或返回当浏览器无法显示按钮时供显示的替代文本。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>disabled</p> </td> <td style="background-color:#efefef;"> <p>设置或返回是否禁用按钮。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>form</p> </td> <td style="background-color:#efefef;"> <p>返回对包含该按钮的表单对象的引用。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>id</p> </td> <td style="background-color:#efefef;"> <p>设置或返回按钮的 id。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>name</p> </td> <td style="background-color:#efefef;"> <p>设置或返回按钮的名称。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>tabIndex</p> </td> <td style="background-color:#efefef;"> <p>设置或返回按钮的 tab 键控制次序。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>type</p> </td> <td style="background-color:#efefef;"> <p>返回按钮的表单元素类型。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>value</p> </td> <td style="background-color:#efefef;"> <p>设置或返回在按钮上显示的文本。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>标准属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>className</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 class 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>dir</p> </td> <td style="background-color:#efefef;"> <p>设置或返回文本的方向。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>lang</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的语言代码。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>title</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 title 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Button 对象的方法</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>方法</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>blur()</p> </td> <td style="background-color:#efefef;"> <p>把焦点从元素上移开。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>click()</p> </td> <td style="background-color:#efefef;"> <p>在某个按钮上模拟一次鼠标单击。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>focus()</p> </td> <td style="background-color:#efefef;"> <p>为某个按钮赋予焦点。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Checkbox 对象</p> <p>Checkbox 对象代表一个 HTML 表单中的 一个选择框。</p> <p>在 HTML 文档中 <input type="checkbox"> 每出现一次,Checkbox 对象就会被创建。</p> <p>您可以通过遍历表单的 elements[] 数组来访问某个选择框,或者通过使用 document.getElementById() 。</p> <p>IE: Internet Explorer, F: Firefox, O: Opera, W3C: W3C 标准.</p> <p>Checkbox 对象的属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>accessKey</p> </td> <td style="background-color:#efefef;"> <p>设置或返回访问 checkbox 的快捷键。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>alt</p> </td> <td style="background-color:#efefef;"> <p>设置或返回不支持 checkbox 时显示的替代文本。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>checked</p> </td> <td style="background-color:#efefef;"> <p>设置或返回 checkbox 是否应被选中。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>defaultChecked</p> </td> <td style="background-color:#efefef;"> <p>返回 checked 属性的默认值。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>disabled</p> </td> <td style="background-color:#efefef;"> <p>设置或返回 checkbox 是否应被禁用。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>form</p> </td> <td style="background-color:#efefef;"> <p>返回对包含 checkbox 的表单的引用。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>id</p> </td> <td style="background-color:#efefef;"> <p>设置或返回 checkbox 的 id。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>name</p> </td> <td style="background-color:#efefef;"> <p>设置或返回 checkbox 的名称。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>tabIndex</p> </td> <td style="background-color:#efefef;"> <p>设置或返回 checkbox 的 tab 键控制次序。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>type</p> </td> <td style="background-color:#efefef;"> <p>返回 checkbox 的表单元素类型。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>value</p> </td> <td style="background-color:#efefef;"> <p>设置或返回 checkbox 的 value 属性的值</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>标准属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>className</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 class 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>dir</p> </td> <td style="background-color:#efefef;"> <p>设置或返回文本的方向。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>lang</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的语言代码。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>title</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 title 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Checkbox 对象的方法</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>方法</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>blur()</p> </td> <td style="background-color:#efefef;"> <p>从 checkbox 上移开焦点。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>click()</p> </td> <td style="background-color:#efefef;"> <p>模拟在 checkbox 中的一次鼠标点击。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>focus()</p> </td> <td style="background-color:#efefef;"> <p>为 checkbox 赋予焦点。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>FileUpload 对象</p> <p>在 HTML 文档中 <input type="file"> 标签每出现一次,一个 FileUpload 对象就会被创建。</p> <p>该元素包含一个文本输入字段,用来输入文件名,还有一个按钮,用来打开文件选择对话框以便图形化选择文件。</p> <p>该元素的 value 属性保存了用户指定的文件的名称,但是当包含一个 file-upload 元素的表单被提交的时候,浏览器会向服务器发送选中的文件的内容而不仅仅是发送文件名。</p> <p>为安全起见,file-upload 元素不允许 HTML 作者或 JavaScript 程序员指定一个默认的文件名。HTML value 属性被忽略,并且对于此类元素来说,value 属性是只读的,这意味着只有用户可以输入一个文件名。当用户选择或编辑一个文件名,file-upload 元素触发 onchange 事件句柄。</p> <p>您可以通过遍历表单的 elements[] 数组,或者通过使用 document.getElementById()来访问 FileUpload 对象。</p> <p>IE: Internet Explorer, F: Firefox, O: Opera, W3C: W3C 标准.</p> <p>FileUpload 对象的属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>accept</p> </td> <td style="background-color:#efefef;"> <p>设置或返回指示文件传输的 MIME 类型的列表(逗号分隔)。</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>accessKey</p> </td> <td style="background-color:#efefef;"> <p>设置或返回访问 FileUpload 对象的快捷键。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>alt</p> </td> <td style="background-color:#efefef;"> <p>设置或返回不支持 <input type="file"> 时显示的替代文字。</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>defaultValue</p> </td> <td style="background-color:#efefef;"> <p>设置或返回 FileUpload 对象的初始值。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>disabled</p> </td> <td style="background-color:#efefef;"> <p>设置或返回是否禁用 FileUpload 对象。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>form</p> </td> <td style="background-color:#efefef;"> <p>返回对包含 FileUpload 对象的表单的引用。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>id</p> </td> <td style="background-color:#efefef;"> <p>设置或返回 FileUpload 对象的 id。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>name</p> </td> <td style="background-color:#efefef;"> <p>设置或返回 FileUpload 对象的名称。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>tabIndex</p> </td> <td style="background-color:#efefef;"> <p>设置或返回定义 FileUpload 对象的 tab 键控制次序的索引号。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>type</p> </td> <td style="background-color:#efefef;"> <p>返回表单元素的类型。对于 FileUpload ,则是 "file" 。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>value</p> </td> <td style="background-color:#efefef;"> <p>返回由用户输入设置的文本后,FileUpload 对象的文件名。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>标准属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>className</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 class 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>dir</p> </td> <td style="background-color:#efefef;"> <p>设置或返回文本的方向。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>lang</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的语言代码。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>title</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 title 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>FileUpload 对象的方法</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>方法</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>blur()</p> </td> <td style="background-color:#efefef;"> <p>从 FileUpload 对象上移开焦点。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>focus()</p> </td> <td style="background-color:#efefef;"> <p>为 FileUpload 对象赋予焦点。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>select()</p> </td> <td style="background-color:#efefef;"> <p>选取 FileUpload 对象。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Hidden 对象</p> <p>Hidden 对象代表一个 HTML 表单中的某个隐藏输入域。</p> <p>这种类型的输入元素实际上是隐藏的。这个不可见的表单元素的 value 属性保存了一个要提交给 Web 服务器的任意字符串。如果想要提交并非用户直接输入的数据的话,就是用这种类型的元素。</p> <p>在 HTML 表单中 <input type="hidden"> 标签每出现一次,一个 Hidden 对象就会被创建。</p> <p>您可通过遍历表单的 elements[] 数组来访问某个隐藏输入域,或者通过使用document.getElementById()。</p> <p>IE: Internet Explorer, F: Firefox, O: Opera, W3C: W3C 标准.</p> <p>Hidden 对象的属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>alt</p> </td> <td style="background-color:#efefef;"> <p>设置或返回当不支持隐藏输入域时显示的替代文本。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>form</p> </td> <td style="background-color:#efefef;"> <p>返回一个对包含隐藏域的表单的引用。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>id</p> </td> <td style="background-color:#efefef;"> <p>设置或返回隐藏域的 id。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>name</p> </td> <td style="background-color:#efefef;"> <p>设置或返回隐藏域的名称。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>type</p> </td> <td style="background-color:#efefef;"> <p>返回隐藏输入域的表单类型。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>value</p> </td> <td style="background-color:#efefef;"> <p>设置或返回隐藏域的 value 属性的值。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>标准属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>className</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 class 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>dir</p> </td> <td style="background-color:#efefef;"> <p>设置或返回文本的方向。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>lang</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的语言代码。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>title</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 title 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Password 对象</p> <p>Password 对象代表 HTML 表单中的密码字段。</p> <p>HTML 的 <input type="password"> 标签在表单上每出现一次,一个 Password 对象就会被创建。</p> <p>该文本输入字段供用户输入某些敏感的数据,比如密码等。当用户输入的时候,他的输入是被掩盖的(例如使用星号*),以防止旁边的人从他背后看到输入的内容。不过需要注意的是,当表单提交时,输入是用明文发送的。</p> <p>与类型为 "text" 的元素类似,当用户改变显示值时,它会触发 onchange 事件句柄。</p> <p>您可以通过遍历表单的 elements[] array 来访问密码字段,或者通过使用 document.getElementById() 。</p> <p>IE: Internet Explorer, F: Firefox, O: Opera, W3C: W3C 标准.</p> <p>Password 对象属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>accessKey</p> </td> <td style="background-color:#efefef;"> <p>设置或返回访问密码字段的快捷键。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>alt</p> </td> <td style="background-color:#efefef;"> <p>设置或返回当不支持密码字段时显示的替代文字。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>defaultValue</p> </td> <td style="background-color:#efefef;"> <p>设置或返回密码字段的默认值。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>disabled</p> </td> <td style="background-color:#efefef;"> <p>设置或返回是否应被禁用密码字段。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>form</p> </td> <td style="background-color:#efefef;"> <p>返回对包含此密码字段的表单的引用。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>id</p> </td> <td style="background-color:#efefef;"> <p>设置或返回密码字段的 id。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>maxLength</p> </td> <td style="background-color:#efefef;"> <p>设置或返回密码字段中字符的最大数目。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>name</p> </td> <td style="background-color:#efefef;"> <p>设置或返回密码字段的名称。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>readOnly</p> </td> <td style="background-color:#efefef;"> <p>设置或返回密码字段是否应当是只读的。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>size</p> </td> <td style="background-color:#efefef;"> <p>设置或返回密码字段的长度。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>tabIndex</p> </td> <td style="background-color:#efefef;"> <p>设置或返回密码字段的 tab 键控制次序。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>type</p> </td> <td style="background-color:#efefef;"> <p>返回密码字段的表单元素类型。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>value</p> </td> <td style="background-color:#efefef;"> <p>设置或返回密码字段的 value 属性的值。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>标准属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>className</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 class 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>dir</p> </td> <td style="background-color:#efefef;"> <p>设置或返回文本的方向。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>lang</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的语言代码。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>title</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 title 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Password 对象方法</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>blur()</p> </td> <td style="background-color:#efefef;"> <p>从密码字段移开焦点。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>focus()</p> </td> <td style="background-color:#efefef;"> <p>为密码字段赋予焦点。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>select()</p> </td> <td style="background-color:#efefef;"> <p>选取密码字段中的文本。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Radio 对象</p> <p>Radio 对象代表 HTML 表单中的单选按钮。</p> <p>在 HTML 表单中 <input type="radio"> 每出现一次,一个 Radio 对象就会被创建。</p> <p>单选按钮是表示一组互斥选项按钮中的一个。当一个按钮被选中,之前选中的按钮就变为非选中的。</p> <p>当单选按钮被选中或不选中时,该按钮就会触发 onclick 事件句柄。</p> <p>您可通过遍历表单的 elements[] 数组来访问 Radio 对象,或者通过使用 document.getElementById()。</p> <p>IE: Internet Explorer, F: Firefox, O: Opera, W3C: W3C 标准.</p> <p>Radio 对象属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>accessKey</p> </td> <td style="background-color:#efefef;"> <p>设置或返回访问单选按钮的快捷键。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>alt</p> </td> <td style="background-color:#efefef;"> <p>设置或返回在不支持单选按钮时显示的替代文本。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>checked</p> </td> <td style="background-color:#efefef;"> <p>设置或返回单选按钮的状态。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>defaultChecked</p> </td> <td style="background-color:#efefef;"> <p>返回单选按钮的默认状态。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>disabled</p> </td> <td style="background-color:#efefef;"> <p>设置或返回是否禁用单选按钮。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>form</p> </td> <td style="background-color:#efefef;"> <p>返回一个对包含此单选按钮的表单的引用。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>id</p> </td> <td style="background-color:#efefef;"> <p>设置或返回单选按钮的 id。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>name</p> </td> <td style="background-color:#efefef;"> <p>设置或返回单选按钮的名称。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>tabIndex</p> </td> <td style="background-color:#efefef;"> <p>设置或返回单选按钮的 tab 键控制次序。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>type</p> </td> <td style="background-color:#efefef;"> <p>返回单选按钮的表单类型。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>value</p> </td> <td style="background-color:#efefef;"> <p>设置或返回单选按钮的 value 属性的值。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9 </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>标准属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>className</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 class 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>dir</p> </td> <td style="background-color:#efefef;"> <p>设置或返回文本的方向。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>lang</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的语言代码。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>title</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 title 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Radio 对象方法</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>方法</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>blur()</p> </td> <td style="background-color:#efefef;"> <p>从单选按钮移开焦点。</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>click()</p> </td> <td style="background-color:#efefef;"> <p>在单选按钮上模拟一次鼠标点击。</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>2</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>focus()</p> </td> <td style="background-color:#efefef;"> <p>为单选按钮赋予焦点。</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Reset 对象</p> <p>Reset 对象代表 HTML 表单中的一个重置按钮。</p> <p>在 HTML 表单中 <input type="reset"> 标签每出现一次,一个 Reset 对象就会被创建。</p> <p>当重置按钮被点击,包含它的表单中所有输入元素的值都重置为它们的默认值。默认值由 HTML value 属性或 JavaScript 的 defaultValue 属性指定。</p> <p>重置按钮在重置表单之前触发 onclick 句柄,并且这个句柄可以通过返回 fasle 来取消。</p> <p>参阅 <span style="color:#900b09;">Form.reset() 方法</span> 和 <span style="color:#900b09;">Form.onreset</span> 事件句柄。</p> <p>您可以通过遍历表单的 elements[] 数组来访问某个重置按钮,或者通过使用document.getElementById()。</p> <p>IE: Internet Explorer, F: Firefox, O: Opera, W3C: W3C 标准.</p> <p>Reset 对象属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>accesskey</p> </td> <td style="background-color:#efefef;"> <p>设置或返回访问重置按钮的快捷键。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>alt</p> </td> <td style="background-color:#efefef;"> <p>设置或返回当浏览器不支持重置按钮时供显示的替代文本。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>disabled</p> </td> <td style="background-color:#efefef;"> <p>设置或返回重置按钮是否应被禁用。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>form</p> </td> <td style="background-color:#efefef;"> <p>返回一个对包含此重置按钮的表单对象的引用。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>id</p> </td> <td style="background-color:#efefef;"> <p>设置或返回重置按钮的 id。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>name</p> </td> <td style="background-color:#efefef;"> <p>设置或返回重置按钮的名称。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>tabIndex</p> </td> <td style="background-color:#efefef;"> <p>设置或返回重置按钮的 tab 键控制次序。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>type</p> </td> <td style="background-color:#efefef;"> <p>返回重置按钮的表单元素类型。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>value</p> </td> <td style="background-color:#efefef;"> <p>设置或返回重置按钮上显示的文本。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>标准属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>className</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 class 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>dir</p> </td> <td style="background-color:#efefef;"> <p>设置或返回文本的方向。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>lang</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的语言代码。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>title</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 title 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Reset 对象方法</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>方法</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>blur()</p> </td> <td style="background-color:#efefef;"> <p>从重置按钮上移开焦点。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>click()</p> </td> <td style="background-color:#efefef;"> <p>在重置按钮上模拟一次鼠标点击。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>focus()</p> </td> <td style="background-color:#efefef;"> <p>为重置按钮赋予焦点。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Submit 对象</p> <p>Submit 对象代表 HTML 表单中的一个提交按钮 (submit button)。</p> <p>在 HTML 表单中 <input type="submit"> 标签每出现一次,一个 Submit 对象就会被创建。</p> <p>在表单提交之前,触发 onclick 事件句柄,并且一个句柄可以通过返回 fasle 来取消表单提交。</p> <p>参阅 <span style="color:#900b09;">Form.submit() 方法</span> 和 <span style="color:#900b09;">Form.onsubmit</span> 事件句柄。</p> <p>实例:<span style="color:#900b09;">表单验证</span></p> <p>您可以通过遍历表单的 elements[] 数组来访问某个提交按钮,或者通过使用document.getElementById()。</p> <p>IE: Internet Explorer, F: Firefox, O: Opera, W3C: W3C 标准.</p> <p>Submit 对象属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>accessKey</p> </td> <td style="background-color:#efefef;"> <p>设置或返回访问提交按钮的快捷键。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>alt</p> </td> <td style="background-color:#efefef;"> <p>设置或返回当浏览器不支持提交按钮时供显示的替代文本。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>disabled</p> </td> <td style="background-color:#efefef;"> <p>设置或返回提交按钮是否应被禁用。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>form</p> </td> <td style="background-color:#efefef;"> <p>返回一个对包含此提交按钮的表单的引用。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>id</p> </td> <td style="background-color:#efefef;"> <p>设置或返回提交按钮的 id。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>name</p> </td> <td style="background-color:#efefef;"> <p>设置或返回提交按钮的名称。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>tabIndex</p> </td> <td style="background-color:#efefef;"> <p>设置或返回提交按钮的 tab 键控制次序。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>type</p> </td> <td style="background-color:#efefef;"> <p>返回提交按钮的表单元素类型。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>value</p> </td> <td style="background-color:#efefef;"> <p>设置或返回在提交按钮上显示的文本。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>标准属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>className</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 class 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>dir</p> </td> <td style="background-color:#efefef;"> <p>设置或返回文本的方向。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>lang</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的语言代码。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>title</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 title 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Submit 对象方法</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>方法</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>blur()</p> </td> <td style="background-color:#efefef;"> <p>从提交按钮上移开焦点。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>click()</p> </td> <td style="background-color:#efefef;"> <p>在提交按钮上模拟一次鼠标点击。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>focus()</p> </td> <td style="background-color:#efefef;"> <p>为提交按钮赋予焦点。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Text 对象</p> <p>Text 对象代表 HTML 表单中的文本输入域。</p> <p>在 HTML 表单中 <input type="text"> 每出现一次,Text 对象就会被创建。</p> <p>该元素可创建一个单行的文本输入字段。当用户编辑显示的文本并随后把输入焦点转移到其他元素的时候,会触发 onchange 事件句柄。</p> <p>您可以使用 HTML <textarea> 标记来创建多行文本输入。参阅 <span style="color:#900b09;">Textarea 对象</span>。</p> <p>对于掩码文本输入,把 <input type="text"> 中的 type 设置为 "password"。参阅 <span style="color:#900b09;">Input Password</span>。</p> <p>您可以通过表单的 elements[] 数组来访问文本输入域,或者通过使用 document.getElementById()。</p> <p>IE: Internet Explorer, F: Firefox, O: Opera, W3C: W3C 标准.</p> <p>Text 对象属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>accessKey</p> </td> <td style="background-color:#efefef;"> <p>设置或返回访问文本域的快捷键。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>alt</p> </td> <td style="background-color:#efefef;"> <p>设置或返回当浏览器不支持文本域时供显示的替代文本。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>defaultValue</p> </td> <td style="background-color:#efefef;"> <p>设置或返回文本域的默认值。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>disabled</p> </td> <td style="background-color:#efefef;"> <p>设置或返回文本域是否应被禁用。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>form</p> </td> <td style="background-color:#efefef;"> <p>返回一个对包含文本域的表单对象的引用。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>id</p> </td> <td style="background-color:#efefef;"> <p>设置或返回文本域的 id。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>maxLength</p> </td> <td style="background-color:#efefef;"> <p>设置或返回文本域中的最大字符数。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>name</p> </td> <td style="background-color:#efefef;"> <p>设置或返回文本域的名称。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>readOnly</p> </td> <td style="background-color:#efefef;"> <p>设置或返回文本域是否应是只读的。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>size</p> </td> <td style="background-color:#efefef;"> <p>设置或返回文本域的尺寸。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>tabIndex</p> </td> <td style="background-color:#efefef;"> <p>设置或返回文本域的 tab 键控制次序。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>type</p> </td> <td style="background-color:#efefef;"> <p>返回文本域的表单元素类型。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>value</p> </td> <td style="background-color:#efefef;"> <p>设置或返回文本域的 value 属性的值。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>标准属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>className</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 class 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>dir</p> </td> <td style="background-color:#efefef;"> <p>设置或返回文本的方向。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>lang</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的语言代码。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>title</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 title 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Text 对象方法</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>方法</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>blur()</p> </td> <td style="background-color:#efefef;"> <p>从文本域上移开焦点。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>focus()</p> </td> <td style="background-color:#efefef;"> <p>在文本域上设置焦点。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>select()</p> </td> <td style="background-color:#efefef;"> <p>选取文本域中的内容。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Link 对象</p> <p>Link 对象代表某个 HTML 的 <link> 元素。<link> 元素可定义两个链接文档之间的关系。</p> <p><link> 元素被定义于 HTML 文档的 head 部分。</p> <p>IE: Internet Explorer, F: Firefox, O: Opera, W3C: W3C 标准.</p> <p>Link 对象属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>charset</p> </td> <td style="background-color:#efefef;"> <p>设置或返回目标 URL 的字符编码。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>disabled</p> </td> <td style="background-color:#efefef;"> <p>设置或返回目标 URL 是否当被禁用。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>href</p> </td> <td style="background-color:#efefef;"> <p>设置或返回被链接资源的 URL。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>hreflang</p> </td> <td style="background-color:#efefef;"> <p>设置或返回目标 URL 的基准语言。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>id</p> </td> <td style="background-color:#efefef;"> <p>设置或返回某个 <link> 元素的 id。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>media</p> </td> <td style="background-color:#efefef;"> <p>设置或返回文档显示的设备类型。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>name</p> </td> <td style="background-color:#efefef;"> <p>设置或返回 <link> 元素的名称。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>rel</p> </td> <td style="background-color:#efefef;"> <p>设置或返回当前文档与目标 URL之间的关系。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>rev</p> </td> <td style="background-color:#efefef;"> <p>设置或返回目标 URL 与当前文档之间的关系。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>type</p> </td> <td style="background-color:#efefef;"> <p>设置或返回目标 URL 的 MIME 类型。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>标准属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>dir</p> </td> <td style="background-color:#efefef;"> <p>设置或返回文本的方向。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>lang</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的语言代码。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Meta 对象</p> <p>Meta 对象代表 HTML 的 一个 <meta> 元素。</p> <p><meta> 元素可提供有关某个 HTML 元素的元信息 (meta-information),比如描述、针对搜索引擎的关键词以及刷新频率。</p> <p>IE: Internet Explorer, F: Firefox, O: Opera, W3C: W3C 标准.</p> <p>Meta 对象属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>content</p> </td> <td style="background-color:#efefef;"> <p>设置或返回 <meta> 元素的 content 属性的值。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>httpEquiv</p> </td> <td style="background-color:#efefef;"> <p>把 content 属性连接到一个 HTTP 头部。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>name</p> </td> <td style="background-color:#efefef;"> <p>把 content 属性连接到某个名称。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>scheme</p> </td> <td style="background-color:#efefef;"> <p>设置或返回用于解释 content 属性的值的格式。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Link 对象</p> <p>Object 对象代表 HTML 的 <object> 元素。</p> <p><object> 元素用于嵌入的可执行内容。</p> <p>IE: Internet Explorer, F: Firefox, O: Opera, W3C: W3C 标准.</p> <p>Link 对象属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>align</p> </td> <td style="background-color:#efefef;"> <p>Sets or returns the alignment of the object according to the surrounding text</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>archive</p> </td> <td style="background-color:#efefef;"> <p>Sets or returns a string that can be used to implement your own archive functionality for the object</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>border</p> </td> <td style="background-color:#efefef;"> <p>Sets or returns the border around the object</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>code</p> </td> <td style="background-color:#efefef;"> <p>Sets or returns the URL of the file that contains the compiled Java class</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>codeBase</p> </td> <td style="background-color:#efefef;"> <p>Sets or returns the URL of the component</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>codeType</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>data</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>declare</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>form</p> </td> <td style="background-color:#efefef;"> <p>Returns a reference to the object's parent form</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>height</p> </td> <td style="background-color:#efefef;"> <p>Sets or returns the height of the object</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>hspace</p> </td> <td style="background-color:#efefef;"> <p>Sets or returns the horizontal margin of the object</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>id</p> </td> <td style="background-color:#efefef;"> <p>Sets or returns the id of the object</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>name</p> </td> <td style="background-color:#efefef;"> <p>Sets or returns the name of the object</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>standby</p> </td> <td style="background-color:#efefef;"> <p>Sets or returns a message when loading the object</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>tabIndex</p> </td> <td style="background-color:#efefef;"> <p>Sets or returns the tab order for the object</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>type</p> </td> <td style="background-color:#efefef;"> <p>Sets or returns the content type for data downloaded via the data attribute</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>useMap</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>vspace</p> </td> <td style="background-color:#efefef;"> <p>Sets or returns the vertical margin of the object</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>width</p> </td> <td style="background-color:#efefef;"> <p>Sets or returns the width of the object</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>标准属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>className</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 class 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>dir</p> </td> <td style="background-color:#efefef;"> <p>设置或返回文本的方向。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>lang</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的语言代码。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>title</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 title 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Option 对象</p> <p>Option 对象代表 HTML 表单中下拉列表中的一个选项。</p> <p>在 HTML 表单中 <option> 标签每出现一次,一个 Option 对象就会被创建。</p> <p>您可通过表单的 elements[] 数组访问一个 Option 对象,或者通过使用 document.getElementById()。</p> <p>IE: Internet Explorer, F: Firefox, O: Opera, W3C: W3C 标准.</p> <p>Option 对象的属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>defaultSelected</p> </td> <td style="background-color:#efefef;"> <p>返回 selected 属性的默认值。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>disabled</p> </td> <td style="background-color:#efefef;"> <p>设置或返回选项是否应被禁用。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>form</p> </td> <td style="background-color:#efefef;"> <p>返回对包含该元素的 <form> 元素的引用。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>id</p> </td> <td style="background-color:#efefef;"> <p>设置或返回选项的 id。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>index</p> </td> <td style="background-color:#efefef;"> <p>返回下拉列表中某个选项的索引位置。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>label</p> </td> <td style="background-color:#efefef;"> <p>设置或返回选项的标记 (仅用于选项组)。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>selected</p> </td> <td style="background-color:#efefef;"> <p>设置或返回 selected 属性的值。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>text</p> </td> <td style="background-color:#efefef;"> <p>设置或返回某个选项的纯文本值。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>value</p> </td> <td style="background-color:#efefef;"> <p>设置或返回被送往服务器的值。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>标准属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>className</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 class 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>dir</p> </td> <td style="background-color:#efefef;"> <p>设置或返回文本的方向。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>lang</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的语言代码。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>title</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 title 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Select 对象</p> <p>Select 对象代表 HTML 表单中的一个下拉列表。</p> <p>在 HTML 表单中,<select> 标签每出现一次,一个 Select 对象就会被创建。</p> <p>您可通过遍历表单的 elements[] 数组来访问某个 Select 对象,或者使用 document.getElementById()。</p> <p>IE: Internet Explorer, F: Firefox, O: Opera, W3C: W3C 标准.</p> <p>Select 对象集合</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>集合</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>options[]</p> </td> <td style="background-color:#efefef;"> <p>返回包含下拉列表中的所有选项的一个数组。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Select 对象属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>disabled</p> </td> <td style="background-color:#efefef;"> <p>设置或返回是否应禁用下拉列表。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>form</p> </td> <td style="background-color:#efefef;"> <p>返回对包含下拉列表的表单的引用。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>id</p> </td> <td style="background-color:#efefef;"> <p>设置或返回下拉列表的 id。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>length</p> </td> <td style="background-color:#efefef;"> <p>返回下拉列表中的选项数目。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>multiple</p> </td> <td style="background-color:#efefef;"> <p>设置或返回是否选择多个项目。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>name</p> </td> <td style="background-color:#efefef;"> <p>设置或返回下拉列表的名称。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>selectedIndex</p> </td> <td style="background-color:#efefef;"> <p>设置或返回下拉列表中被选项目的索引号。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>size</p> </td> <td style="background-color:#efefef;"> <p>设置或返回下拉列表中的可见行数。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>tabIndex</p> </td> <td style="background-color:#efefef;"> <p>设置或返回下拉列表的 tab 键控制次序。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>type</p> </td> <td style="background-color:#efefef;"> <p>返回下拉列表的表单类型。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>标准属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>className</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 class 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>dir</p> </td> <td style="background-color:#efefef;"> <p>设置或返回文本的方向。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>lang</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的语言代码。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>title</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 title 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Select 对象方法</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>方法</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>add()</p> </td> <td style="background-color:#efefef;"> <p>向下拉列表添加一个选项。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>blur()</p> </td> <td style="background-color:#efefef;"> <p>从下拉列表移开焦点。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>focus()</p> </td> <td style="background-color:#efefef;"> <p>在下拉列表上设置焦点。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>remove()</p> </td> <td style="background-color:#efefef;"> <p>从下拉列表中删除一个选项。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Select 对象事件句柄</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>事件句柄</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>onchange</p> </td> <td style="background-color:#efefef;"> <p>当改变选择时调用的事件句柄。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Style 对象</p> <p>Style 对象代表一个单独的样式声明。可从应用样式的文档或元素访问 Style 对象。</p> <p>使用 Style 对象属性的语法:</p> <p>document.getElementById("id").style.property="值"</p> <p>Style 对象的属性:</p> <p>· <span style="color:#900b09;">背景</span></p> <p>· <span style="color:#900b09;">边框和边距</span></p> <p>· <span style="color:#900b09;">布局</span></p> <p>· <span style="color:#900b09;">列表</span></p> <p>· <span style="color:#900b09;">杂项</span></p> <p>· <span style="color:#900b09;">定位</span></p> <p>· <span style="color:#900b09;">打印</span></p> <p>· <span style="color:#900b09;">滚动条</span></p> <p>· <span style="color:#900b09;">表格</span></p> <p>· <span style="color:#900b09;">文本</span></p> <p>· <span style="color:#900b09;">规范</span></p> <p>IE: Internet Explorer, M: 仅适用于 Mac IE, W: 仅适用于 Windows IE, F: Firefox, O: Opera</p> <p>W3C: 万维网联盟 World Wide Web Consortium (Internet 标准).</p> <p>Background 属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>background</p> </td> <td style="background-color:#efefef;"> <p>在一行中设置所有的背景属性</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>backgroundAttachment</p> </td> <td style="background-color:#efefef;"> <p>设置背景图像是否固定或随页面滚动</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>backgroundColor</p> </td> <td style="background-color:#efefef;"> <p>设置元素的背景颜色</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>backgroundImage</p> </td> <td style="background-color:#efefef;"> <p>设置元素的背景图像</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>backgroundPosition</p> </td> <td style="background-color:#efefef;"> <p>设置背景图像的起始位置</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>backgroundPositionX</p> </td> <td style="background-color:#efefef;"> <p>设置backgroundPosition属性的X坐标</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>backgroundPositionY</p> </td> <td style="background-color:#efefef;"> <p>设置backgroundPosition属性的Y坐标</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>backgroundRepeat</p> </td> <td style="background-color:#efefef;"> <p>设置是否及如何重复背景图像</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Border 和 Margin 属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>border</p> </td> <td style="background-color:#efefef;"> <p>在一行设置四个边框的所有属性</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>borderBottom</p> </td> <td style="background-color:#efefef;"> <p>在一行设置底边框的所有属性</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>borderBottomColor</p> </td> <td style="background-color:#efefef;"> <p>设置底边框的颜色</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>borderBottomStyle</p> </td> <td style="background-color:#efefef;"> <p>设置底边框的样式</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>borderBottomWidth</p> </td> <td style="background-color:#efefef;"> <p>设置底边框的宽度</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>borderColor</p> </td> <td style="background-color:#efefef;"> <p>设置所有四个边框的颜色 (可设置四种颜色)</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>borderLeft</p> </td> <td style="background-color:#efefef;"> <p>在一行设置左边框的所有属性</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>borderLeftColor</p> </td> <td style="background-color:#efefef;"> <p>设置左边框的颜色</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>borderLeftStyle</p> </td> <td style="background-color:#efefef;"> <p>设置左边框的样式</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>borderLeftWidth</p> </td> <td style="background-color:#efefef;"> <p>设置左边框的宽度</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>borderRight</p> </td> <td style="background-color:#efefef;"> <p>在一行设置右边框的所有属性</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>borderRightColor</p> </td> <td style="background-color:#efefef;"> <p>设置右边框的颜色</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>borderRightStyle</p> </td> <td style="background-color:#efefef;"> <p>设置右边框的样式</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>borderRightWidth</p> </td> <td style="background-color:#efefef;"> <p>设置右边框的宽度</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>borderStyle</p> </td> <td style="background-color:#efefef;"> <p>设置所有四个边框的样式 (可设置四种样式)</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>borderTop</p> </td> <td style="background-color:#efefef;"> <p>在一行设置顶边框的所有属性</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>borderTopColor</p> </td> <td style="background-color:#efefef;"> <p>设置顶边框的颜色</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>borderTopStyle</p> </td> <td style="background-color:#efefef;"> <p>设置顶边框的样式</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>borderTopWidth</p> </td> <td style="background-color:#efefef;"> <p>设置顶边框的宽度</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>borderWidth</p> </td> <td style="background-color:#efefef;"> <p>设置所有四条边框的宽度 (可设置四种宽度)</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>margin</p> </td> <td style="background-color:#efefef;"> <p>设置元素的边距 (可设置四个值)</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>marginBottom</p> </td> <td style="background-color:#efefef;"> <p>设置元素的底边距</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>marginLeft</p> </td> <td style="background-color:#efefef;"> <p>设置元素的左边距</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>marginRight</p> </td> <td style="background-color:#efefef;"> <p>设置元素的右边据</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>marginTop</p> </td> <td style="background-color:#efefef;"> <p>设置元素的顶边距</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>outline</p> </td> <td style="background-color:#efefef;"> <p>在一行设置所有的outline属性</p> </td> <td style="background-color:#efefef;"> <p>5M</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>outlineColor</p> </td> <td style="background-color:#efefef;"> <p>设置围绕元素的轮廓颜色</p> </td> <td style="background-color:#efefef;"> <p>5M</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>outlineStyle</p> </td> <td style="background-color:#efefef;"> <p>设置围绕元素的轮廓样式</p> </td> <td style="background-color:#efefef;"> <p>5M</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>outlineWidth</p> </td> <td style="background-color:#efefef;"> <p>设置围绕元素的轮廓宽度</p> </td> <td style="background-color:#efefef;"> <p>5M</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>padding</p> </td> <td style="background-color:#efefef;"> <p>设置元素的填充 (可设置四个值)</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>paddingBottom</p> </td> <td style="background-color:#efefef;"> <p>设置元素的下填充</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>paddingLeft</p> </td> <td style="background-color:#efefef;"> <p>设置元素的左填充</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>paddingRight</p> </td> <td style="background-color:#efefef;"> <p>设置元素的右填充</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>paddingTop</p> </td> <td style="background-color:#efefef;"> <p>设置元素的顶填充</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Layout 属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>clear</p> </td> <td style="background-color:#efefef;"> <p>设置在元素的哪边不允许其他的浮动元素</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>clip</p> </td> <td style="background-color:#efefef;"> <p>设置元素的形状</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>content</p> </td> <td style="background-color:#efefef;"> <p>设置元信息</p> </td> <td style="background-color:#efefef;"> <p>5M</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>counterIncrement</p> </td> <td style="background-color:#efefef;"> <p>设置其后是正数的计数器名称的列表。其中整数指示每当元素出现时计数器的增量。默认是1。</p> </td> <td style="background-color:#efefef;"> <p>5M</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>counterReset</p> </td> <td style="background-color:#efefef;"> <p>设置其后是正数的计数器名称的列表。其中整数指示每当元素出现时计数器被设置的值。默认是0。</p> </td> <td style="background-color:#efefef;"> <p>5M</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>cssFloat</p> </td> <td style="background-color:#efefef;"> <p>设置图像或文本将出现(浮动)在另一元素中的何处。</p> </td> <td style="background-color:#efefef;"> <p>5M</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>cursor</p> </td> <td style="background-color:#efefef;"> <p>设置显示的指针类型</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>direction</p> </td> <td style="background-color:#efefef;"> <p>设置元素的文本方向</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>display</p> </td> <td style="background-color:#efefef;"> <p>设置元素如何被显示</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>height</p> </td> <td style="background-color:#efefef;"> <p>设置元素的高度</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>markerOffset</p> </td> <td style="background-color:#efefef;"> <p>设置marker box的principal box距离其最近的边框边缘的距离</p> </td> <td style="background-color:#efefef;"> <p>5M</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>marks</p> </td> <td style="background-color:#efefef;"> <p>设置是否cross marks或crop marks应仅仅被呈现于page box边缘之外</p> </td> <td style="background-color:#efefef;"> <p>5M</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>maxHeight</p> </td> <td style="background-color:#efefef;"> <p>设置元素的最大高度</p> </td> <td style="background-color:#efefef;"> <p>5M</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>maxWidth</p> </td> <td style="background-color:#efefef;"> <p>设置元素的最大宽度</p> </td> <td style="background-color:#efefef;"> <p>5M</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>minHeight</p> </td> <td style="background-color:#efefef;"> <p>设置元素的最小高度</p> </td> <td style="background-color:#efefef;"> <p>5M</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>minWidth</p> </td> <td style="background-color:#efefef;"> <p>设置元素的最小宽度</p> </td> <td style="background-color:#efefef;"> <p>5M</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>overflow</p> </td> <td style="background-color:#efefef;"> <p>规定如何处理不适合元素盒的内容</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>verticalAlign</p> </td> <td style="background-color:#efefef;"> <p>设置对元素中的内容进行垂直排列</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>visibility</p> </td> <td style="background-color:#efefef;"> <p>设置元素是否可见</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>width</p> </td> <td style="background-color:#efefef;"> <p>设置元素的宽度</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>List 属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>listStyle</p> </td> <td style="background-color:#efefef;"> <p>在一行设置列表的所有属性</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>listStyleImage</p> </td> <td style="background-color:#efefef;"> <p>把图像设置为列表项标记</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>listStylePosition</p> </td> <td style="background-color:#efefef;"> <p>改变列表项标记的位置</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>listStyleType</p> </td> <td style="background-color:#efefef;"> <p>设置列表项标记的类型</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Positioning 属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>bottom</p> </td> <td style="background-color:#efefef;"> <p>设置元素的底边缘距离父元素底边缘的之上或之下的距离</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>left</p> </td> <td style="background-color:#efefef;"> <p>置元素的左边缘距离父元素左边缘的左边或右边的距离</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>position</p> </td> <td style="background-color:#efefef;"> <p>把元素放置在static, relative, absolute 或 fixed 的位置</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>right</p> </td> <td style="background-color:#efefef;"> <p>置元素的右边缘距离父元素右边缘的左边或右边的距离</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>top</p> </td> <td style="background-color:#efefef;"> <p>设置元素的顶边缘距离父元素顶边缘的之上或之下的距离</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>zIndex</p> </td> <td style="background-color:#efefef;"> <p>设置元素的堆叠次序</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Printing 属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>orphans</p> </td> <td style="background-color:#efefef;"> <p>设置段落留到页面底部的最小行数</p> </td> <td style="background-color:#efefef;"> <p>5M</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>page</p> </td> <td style="background-color:#efefef;"> <p>设置显示某元素时使用的页面类型</p> </td> <td style="background-color:#efefef;"> <p>5M</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>pageBreakAfter</p> </td> <td style="background-color:#efefef;"> <p>设置某元素之后的分页行为</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>pageBreakBefore</p> </td> <td style="background-color:#efefef;"> <p>设置某元素之前的分页行为</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>pageBreakInside</p> </td> <td style="background-color:#efefef;"> <p>设置某元素内部的分页行为</p> </td> <td style="background-color:#efefef;"> <p>5M</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>size</p> </td> <td style="background-color:#efefef;"> <p>设置页面的方向和尺寸</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>widows</p> </td> <td style="background-color:#efefef;"> <p>设置段落必须留到页面顶部的最小行数</p> </td> <td style="background-color:#efefef;"> <p>5M</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Scrollbar 属性 (IE-only)</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>scrollbar3dLightColor</p> </td> <td style="background-color:#efefef;"> <p>设置箭头和滚动条左侧和顶边的颜色</p> </td> <td style="background-color:#efefef;"> <p>5W</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>scrollbarArrowColor</p> </td> <td style="background-color:#efefef;"> <p>设置滚动条上的箭头颜色</p> </td> <td style="background-color:#efefef;"> <p>5W</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>scrollbarBaseColor</p> </td> <td style="background-color:#efefef;"> <p>设置滚动条的底色</p> </td> <td style="background-color:#efefef;"> <p>5W</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>scrollbarDarkShadowColor</p> </td> <td style="background-color:#efefef;"> <p>设置箭头和滚动条右侧和底边的颜色</p> </td> <td style="background-color:#efefef;"> <p>5W</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>scrollbarFaceColor</p> </td> <td style="background-color:#efefef;"> <p>设置滚动条的表色</p> </td> <td style="background-color:#efefef;"> <p>5W</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>scrollbarHighlightColor</p> </td> <td style="background-color:#efefef;"> <p>设置箭头和滚动条左侧和顶边的颜色,以及滚动条的背景</p> </td> <td style="background-color:#efefef;"> <p>5W</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>scrollbarShadowColor</p> </td> <td style="background-color:#efefef;"> <p>设置箭头和滚动条右侧和底边的颜色</p> </td> <td style="background-color:#efefef;"> <p>5W</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>scrollbarTrackColor</p> </td> <td style="background-color:#efefef;"> <p>设置滚动条的背景色</p> </td> <td style="background-color:#efefef;"> <p>5W</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> </tbody> </table> <p>Table 属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>borderCollapse</p> </td> <td style="background-color:#efefef;"> <p>设置表格边框是否合并为单边框,或者像在标准的HTML中那样分离。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>borderSpacing</p> </td> <td style="background-color:#efefef;"> <p>设置分隔单元格边框的距离</p> </td> <td style="background-color:#efefef;"> <p>5M</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>captionSide</p> </td> <td style="background-color:#efefef;"> <p>设置表格标题的位置</p> </td> <td style="background-color:#efefef;"> <p>5M</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>emptyCells</p> </td> <td style="background-color:#efefef;"> <p>设置是否显示表格中的空单元格</p> </td> <td style="background-color:#efefef;"> <p>5M</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>tableLayout</p> </td> <td style="background-color:#efefef;"> <p>设置用来显示表格单元格、行以及列的算法</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Text 属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>color</p> </td> <td style="background-color:#efefef;"> <p>设置文本的颜色</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>font</p> </td> <td style="background-color:#efefef;"> <p>在一行设置所有的字体属性</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>fontFamily</p> </td> <td style="background-color:#efefef;"> <p>设置元素的字体系列。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>fontSize</p> </td> <td style="background-color:#efefef;"> <p>设置元素的字体大小。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>fontSizeAdjust</p> </td> <td style="background-color:#efefef;"> <p>设置/调整文本的尺寸</p> </td> <td style="background-color:#efefef;"> <p>5M</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>fontStretch</p> </td> <td style="background-color:#efefef;"> <p>设置如何紧缩或伸展字体</p> </td> <td style="background-color:#efefef;"> <p>5M</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>fontStyle</p> </td> <td style="background-color:#efefef;"> <p>设置元素的字体样式</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>fontVariant</p> </td> <td style="background-color:#efefef;"> <p>用小型大写字母字体来显示文本</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>fontWeight</p> </td> <td style="background-color:#efefef;"> <p>设置字体的粗细</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>letterSpacing</p> </td> <td style="background-color:#efefef;"> <p>设置字符间距</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>lineHeight</p> </td> <td style="background-color:#efefef;"> <p>设置行间距</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>quotes</p> </td> <td style="background-color:#efefef;"> <p>设置在文本中使用哪种引号</p> </td> <td style="background-color:#efefef;"> <p>5M</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>textAlign</p> </td> <td style="background-color:#efefef;"> <p>排列文本</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>textDecoration</p> </td> <td style="background-color:#efefef;"> <p>设置文本的修饰</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>textIndent</p> </td> <td style="background-color:#efefef;"> <p>缩紧首行的文本</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>textShadow</p> </td> <td style="background-color:#efefef;"> <p>设置文本的阴影效果</p> </td> <td style="background-color:#efefef;"> <p>5M</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>textTransform</p> </td> <td style="background-color:#efefef;"> <p>对文本设置大写效果</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>unicodeBidi</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>whiteSpace</p> </td> <td style="background-color:#efefef;"> <p>设置如何设置文本中的折行和空白符</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>wordSpacing</p> </td> <td style="background-color:#efefef;"> <p>设置文本中的词间距</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>标准属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>dir</p> </td> <td style="background-color:#efefef;"> <p>设置或返回文本的方向</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>lang</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的语言代码</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>title</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的咨询性的标题</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>cssText 属性</p> <p>它是一组样式属性及其值的文本表示。这个文本格式化为一个 CSS 样式表,去掉了包围属性和值的元素选择器的花括号。</p> <p>将这一属性设置为非法的值将会抛出一个代码为 SYNTAX_ERR 的 <span style="color:#900b09;">DOMException 异常</span>。当 CSS2Properties 对象是只读的时候,试图设置这一属性将会抛出一个代码为 NO_MODIFICATION_ALLOWED_ERR 的 <span style="color:#900b09;">DOMException 异常</span>。</p> <p>关于 CSS2Properties 对象</p> <p>CSS2Properties 对象表示一组 CSS 样式属性及其值。它为 CSS 规范定义的每一个 CSS 属性都定义一个 JavaScript 属性。</p> <p>一个 HTMLElement 的 style 属性是一个可读可写的 CSS2Properties 对象,就好像 CSSRule 对象的 style 属性一样。不过,Window.getComputedStyle() 的返回值是一个 CSS2Properties 对象,其属性是只读的。</p> <p>Table 对象</p> <p>Table 对象代表一个 HTML 表格。</p> <p>在 HTML 文档中 <table> 标签每出现一次,一个 Table 对象就会被创建。</p> <p>IE: Internet Explorer, F: Firefox, O: Opera, W3C: W3C 标准.</p> <p>Table 对象集合</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>集合</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>cells[]</p> </td> <td style="background-color:#efefef;"> <p>返回包含表格中所有单元格的一个数组。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>rows[]</p> </td> <td style="background-color:#efefef;"> <p>返回包含表格中所有行的一个数组。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>tBodies[]</p> </td> <td style="background-color:#efefef;"> <p>返回包含表格中所有 tbody 的一个数组。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Table 对象属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>align</p> </td> <td style="background-color:#efefef;"> <p>表在文档中的水平对齐方式。(已废弃)</p> </td> <td style="background-color:#efefef;"> <p>-</p> </td> <td style="background-color:#efefef;"> <p>-</p> </td> <td style="background-color:#efefef;"> <p>-</p> </td> <td style="background-color:#efefef;"> <p>-</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>bgColor</p> </td> <td style="background-color:#efefef;"> <p>表的背景颜色。(已废弃)</p> </td> <td style="background-color:#efefef;"> <p>-</p> </td> <td style="background-color:#efefef;"> <p>-</p> </td> <td style="background-color:#efefef;"> <p>-</p> </td> <td style="background-color:#efefef;"> <p>-</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>border</p> </td> <td style="background-color:#efefef;"> <p>设置或返回表格边框的宽度。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>caption</p> </td> <td style="background-color:#efefef;"> <p>对表格的 <caption> 元素的引用。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>cellPadding</p> </td> <td style="background-color:#efefef;"> <p>设置或返回单元格内容和单元格边框之间的空白量。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>cellSpacing</p> </td> <td style="background-color:#efefef;"> <p>设置或返回在表格中的单元格之间的空白量。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>frame</p> </td> <td style="background-color:#efefef;"> <p>设置或返回表格的外部边框。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>id</p> </td> <td style="background-color:#efefef;"> <p>设置或返回表格的 id。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>rules</p> </td> <td style="background-color:#efefef;"> <p>设置或返回表格的内部边框(行线)。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>summary</p> </td> <td style="background-color:#efefef;"> <p>设置或返回对表格的描述(概述)。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>tFoot</p> </td> <td style="background-color:#efefef;"> <p>返回表格的 TFoot 对象。如果不存在该元素,则为 null。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>tHead</p> </td> <td style="background-color:#efefef;"> <p>返回表格的 THead 对象。如果不存在该元素,则为 null。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>width</p> </td> <td style="background-color:#efefef;"> <p>设置或返回表格的宽度。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>标准属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>className</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 class 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>dir</p> </td> <td style="background-color:#efefef;"> <p>设置或返回文本的方向。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>lang</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的语言代码。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>title</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 title 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Table 对象方法</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>方法</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>createCaption()</p> </td> <td style="background-color:#efefef;"> <p>为表格创建一个 caption 元素。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>createTFoot()</p> </td> <td style="background-color:#efefef;"> <p>在表格中创建一个空的 tFoot 元素。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>createTHead()</p> </td> <td style="background-color:#efefef;"> <p>在表格中创建一个空的 tHead 元素。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>deleteCaption()</p> </td> <td style="background-color:#efefef;"> <p>从表格删除 caption 元素以及其内容。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>deleteRow()</p> </td> <td style="background-color:#efefef;"> <p>从表格删除一行。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>deleteTFoot()</p> </td> <td style="background-color:#efefef;"> <p>从表格删除 tFoot 元素及其内容。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>deleteTHead()</p> </td> <td style="background-color:#efefef;"> <p>从表格删除 tHead 元素及其内容。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>insertRow()</p> </td> <td style="background-color:#efefef;"> <p>在表格中插入一个新行。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>TableCell 对象</p> <p>TableCell 对象代表一个 HTML 表格单元格。</p> <p>在一个 HTML 文档中 <td> 标签每出现一次,一个 TableCell 对象就会被创建。</p> <p>IE: Internet Explorer, F: Firefox, O: Opera, W3C: W3C 标准.</p> <p>TableCell 对象属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>abbr</p> </td> <td style="background-color:#efefef;"> <p>设置或返回单元格中内容的缩写版本。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>align</p> </td> <td style="background-color:#efefef;"> <p>设置或返回单元格内部数据的水平排列方式。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>axis</p> </td> <td style="background-color:#efefef;"> <p>设置或返回相关单元格的一个逗号分隔的列表。</p> </td> <td style="background-color:#efefef;"> <p>6</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>cellIndex</p> </td> <td style="background-color:#efefef;"> <p>返回单元格在某行的单元格集合中的位置。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>ch</p> </td> <td style="background-color:#efefef;"> <p>设置或返回单元格的对齐字符。</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>chOff</p> </td> <td style="background-color:#efefef;"> <p>设置或返回单元格的对齐字符的偏移量。</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>colSpan</p> </td> <td style="background-color:#efefef;"> <p>单元格横跨的列数。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>headers</p> </td> <td style="background-color:#efefef;"> <p>设置或返回 header-cell 的 id 值。</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>id</p> </td> <td style="background-color:#efefef;"> <p>设置或返回单元格的 id。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>innerHTML</p> </td> <td style="background-color:#efefef;"> <p>设置或返回单元格的开始标签和结束标签之间的 HTML。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>rowSpan</p> </td> <td style="background-color:#efefef;"> <p>设置或返回单元格可横跨的行数。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>scope</p> </td> <td style="background-color:#efefef;"> <p>设置或返回此单元格是否可提供标签信息。</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>vAlign</p> </td> <td style="background-color:#efefef;"> <p>设置或返回表格单元格内数据的垂直排列方式。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>width</p> </td> <td style="background-color:#efefef;"> <p>设置或返回单元格的宽度。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>标准属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>className</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 class 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>dir</p> </td> <td style="background-color:#efefef;"> <p>设置或返回文本的方向。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>lang</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的语言代码。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>title</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 title 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>TableRow 对象</p> <p>TableRow 对象代表一个 HTML 表格行。</p> <p>在 HTML 文档中 <tr> 标签每出现一次,一个 TableRow 对象就会被创建。</p> <p>IE: Internet Explorer, F: Firefox, O: Opera, W3C: W3C 标准.</p> <p>TableRow 对象集合</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>集合</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>cells[]</p> </td> <td style="background-color:#efefef;"> <p>返回包含行中所有单元格的一个数组。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>TableRow 对象属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>align</p> </td> <td style="background-color:#efefef;"> <p>设置或返回在行中数据的水平排列。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>ch</p> </td> <td style="background-color:#efefef;"> <p>设置或返回在行中单元格的对齐字符。</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>chOff</p> </td> <td style="background-color:#efefef;"> <p>设置或返回在行中单元格的对齐字符的偏移量。</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>id</p> </td> <td style="background-color:#efefef;"> <p>设置或返回行的 id。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>innerHTML</p> </td> <td style="background-color:#efefef;"> <p>设置或返回行的开始标签和结束标签之间的 HTML。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>No</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>rowIndex</p> </td> <td style="background-color:#efefef;"> <p>返回该行在表中的位置。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>sectionRowIndex</p> </td> <td style="background-color:#efefef;"> <p>返回在 tBody 、tHead 或 tFoot 中,行的位置。</p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p> </p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>vAlign</p> </td> <td style="background-color:#efefef;"> <p>设置或返回在行中的数据的垂直排列方式。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>TableRow 对象方法</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>方法</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>deleteCell()</p> </td> <td style="background-color:#efefef;"> <p>删除行中的指定的单元格。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>insertCell()</p> </td> <td style="background-color:#efefef;"> <p>在一行中的指定位置插入一个空的 <td> 元素。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Textarea 对象</p> <p>Textarea 对象代表 HTML 表单中的一个文本区 (text-area)。在表单中 <textarea> 标签每出现一次,一个 Textarea 对象就会被创建。</p> <p>您可以通过索引相应表单的元素数组来访问某个 Textarea 对象,或者使用 getElementById()。</p> <p>IE: Internet Explorer, F: Firefox, O: Opera, W3C: W3C 标准.</p> <p>Textarea Object Properties</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>accessKey</p> </td> <td style="background-color:#efefef;"> <p>设置或返回访问 textarea 的键盘快捷键。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>cols</p> </td> <td style="background-color:#efefef;"> <p>设置或返回 textarea 的宽度。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>defaultValue</p> </td> <td style="background-color:#efefef;"> <p>设置或返回文本框中的初始内容。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>disabled</p> </td> <td style="background-color:#efefef;"> <p>设置或返回 textarea 是否应当被禁用。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>form</p> </td> <td style="background-color:#efefef;"> <p>返回对包含该 textarea 的表单对象的引用。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>id</p> </td> <td style="background-color:#efefef;"> <p>设置或返回某个 textarea 的 id。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>name</p> </td> <td style="background-color:#efefef;"> <p>设置或返回 textarea 的名称。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>readOnly</p> </td> <td style="background-color:#efefef;"> <p>设置或返回 textarea 是否应当是只读的。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>rows</p> </td> <td style="background-color:#efefef;"> <p>设置或返回 textarea 的高度。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>tabIndex</p> </td> <td style="background-color:#efefef;"> <p>设置或返回 textarea 的 tab 键控制次序。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>type</p> </td> <td style="background-color:#efefef;"> <p>返回该文本框的表单类型。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>value</p> </td> <td style="background-color:#efefef;"> <p>设置或返回在 textarea 中的文本。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>标准属性</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>属性</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>className</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 class 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>dir</p> </td> <td style="background-color:#efefef;"> <p>设置或返回文本的方向。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>lang</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的语言代码。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>title</p> </td> <td style="background-color:#efefef;"> <p>设置或返回元素的 title 属性。</p> </td> <td style="background-color:#efefef;"> <p>5</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Textarea 对象方法</p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>方法</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>blur()</p> </td> <td style="background-color:#efefef;"> <p>从 textarea 移开焦点。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>focus()</p> </td> <td style="background-color:#efefef;"> <p>在 textarea 上设置焦点。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>select()</p> </td> <td style="background-color:#efefef;"> <p>选择 textarea 中的文本。</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>Textarea 对象事件句柄</p> <p> </p> <table> <tbody> <tr> <td style="background-color:#cccccc;"> <p>事件句柄</p> </td> <td style="background-color:#cccccc;"> <p>描述</p> </td> <td style="background-color:#cccccc;"> <p>IE</p> </td> <td style="background-color:#cccccc;"> <p>F</p> </td> <td style="background-color:#cccccc;"> <p>O</p> </td> <td style="background-color:#cccccc;"> <p>W3C</p> </td> </tr> <tr> <td style="background-color:#efefef;"> <p>onchange</p> </td> <td style="background-color:#efefef;"> <p>当输入值改变时调用的事件句柄</p> </td> <td style="background-color:#efefef;"> <p>4</p> </td> <td style="background-color:#efefef;"> <p>1</p> </td> <td style="background-color:#efefef;"> <p>9</p> </td> <td style="background-color:#efefef;"> <p>Yes</p> </td> </tr> </tbody> </table> <p>       本文由黑龙江省PPP项目咨询研究中心编写机构的技术研究部门整理转载,欢迎各位技术同盟转载学习,如您在工作中需要编写项目可行性研究报告、资金申请报告、商业计划书、投资价值分析报告、节能评估报告,可与中科万向报告编写机构联系,感谢该机构对本文的支持。</p> <p> </p> </div> </div> </div> </div> </div> <!--PC和WAP自适应版--> <div id="SOHUCS" sid="1187976412573835264"></div> <script type="text/javascript" src="/views/front/js/chanyan.js"></script> <!-- 文章页-底部 动态广告位 --> <div class="youdao-fixed-ad" id="detail_ad_bottom"></div> </div> <div class="col-md-3"> <div class="row" id="ad"> <!-- 文章页-右侧1 动态广告位 --> <div id="right-1" class="col-lg-12 col-md-12 col-sm-4 col-xs-4 ad"> <div class="youdao-fixed-ad" id="detail_ad_1"> </div> </div> <!-- 文章页-右侧2 动态广告位 --> <div id="right-2" class="col-lg-12 col-md-12 col-sm-4 col-xs-4 ad"> <div class="youdao-fixed-ad" id="detail_ad_2"></div> </div> <!-- 文章页-右侧3 动态广告位 --> <div id="right-3" class="col-lg-12 col-md-12 col-sm-4 col-xs-4 ad"> <div class="youdao-fixed-ad" id="detail_ad_3"></div> </div> </div> </div> </div> </div> </div> <div class="container"> <h4 class="pt20 mb15 mt0 border-top">你可能感兴趣的:(HTML DOM 简介)</h4> <div id="paradigm-article-related"> <div class="recommend-post mb30"> <ul class="widget-links"> <li><a href="/article/1835513699826233344.htm" title="android系统selinux中添加新属性property" target="_blank">android系统selinux中添加新属性property</a> <span class="text-muted">辉色投像</span> <div>1.定位/android/system/sepolicy/private/property_contexts声明属性开头:persist.charge声明属性类型:u:object_r:system_prop:s0图12.定位到android/system/sepolicy/public/domain.te删除neverallow{domain-init}default_prop:property</div> </li> <li><a href="/article/1835509770287673344.htm" title="swagger访问路径" target="_blank">swagger访问路径</a> <span class="text-muted">igotyback</span> <a class="tag" taget="_blank" href="/search/swagger/1.htm">swagger</a> <div>Swagger2.x版本访问地址:http://{ip}:{port}/{context-path}/swagger-ui.html{ip}是你的服务器IP地址。{port}是你的应用服务端口,通常为8080。{context-path}是你的应用上下文路径,如果应用部署在根路径下,则为空。Swagger3.x版本对于Swagger3.x版本(也称为OpenAPI3)访问地址:http://{ip</div> </li> <li><a href="/article/1835508130608410624.htm" title="html 中如何使用 uniapp 的部分方法" target="_blank">html 中如何使用 uniapp 的部分方法</a> <span class="text-muted">某公司摸鱼前端</span> <a class="tag" taget="_blank" href="/search/html/1.htm">html</a><a class="tag" taget="_blank" href="/search/uni-app/1.htm">uni-app</a><a class="tag" taget="_blank" href="/search/%E5%89%8D%E7%AB%AF/1.htm">前端</a> <div>示例代码:Documentconsole.log(window);效果展示:好了,现在就可以uni.使用相关的方法了</div> </li> <li><a href="/article/1835508131489214464.htm" title="高级编程--XML+socket练习题" target="_blank">高级编程--XML+socket练习题</a> <span class="text-muted">masa010</span> <a class="tag" taget="_blank" href="/search/java/1.htm">java</a><a class="tag" taget="_blank" href="/search/%E5%BC%80%E5%8F%91%E8%AF%AD%E8%A8%80/1.htm">开发语言</a> <div>1.北京华北2114.8万人上海华东2,500万人广州华南1292.68万人成都华西1417万人(1)使用dom4j将信息存入xml中(2)读取信息,并打印控制台(3)添加一个city节点与子节点(4)使用socketTCP协议编写服务端与客户端,客户端输入城市ID,服务器响应相应城市信息(5)使用socketTCP协议编写服务端与客户端,客户端要求用户输入city对象,服务端接收并使用dom4j</div> </li> <li><a href="/article/1835505606245576704.htm" title="Python中os.environ基本介绍及使用方法" target="_blank">Python中os.environ基本介绍及使用方法</a> <span class="text-muted">鹤冲天Pro</span> <a class="tag" taget="_blank" href="/search/%23/1.htm">#</a><a class="tag" taget="_blank" href="/search/Python/1.htm">Python</a><a class="tag" taget="_blank" href="/search/python/1.htm">python</a><a class="tag" taget="_blank" href="/search/%E6%9C%8D%E5%8A%A1%E5%99%A8/1.htm">服务器</a><a class="tag" taget="_blank" href="/search/%E5%BC%80%E5%8F%91%E8%AF%AD%E8%A8%80/1.htm">开发语言</a> <div>文章目录python中os.environos.environ简介os.environ进行环境变量的增删改查python中os.environ的使用详解1.简介2.key字段详解2.1常见key字段3.os.environ.get()用法4.环境变量的增删改查和判断是否存在4.1新增环境变量4.2更新环境变量4.3获取环境变量4.4删除环境变量4.5判断环境变量是否存在python中os.envi</div> </li> <li><a href="/article/1835504218178416640.htm" title="Google earth studio 简介" target="_blank">Google earth studio 简介</a> <span class="text-muted">陟彼高冈yu</span> <a class="tag" taget="_blank" href="/search/%E6%97%85%E6%B8%B8/1.htm">旅游</a> <div>GoogleEarthStudio是一个基于Web的动画工具,专为创作使用GoogleEarth数据的动画和视频而设计。它利用了GoogleEarth强大的三维地图和卫星影像数据库,使用户能够轻松地创建逼真的地球动画、航拍视频和动态地图可视化。网址为https://www.google.com/earth/studio/。GoogleEarthStudio是一个基于Web的动画工具,专为创作使用G</div> </li> <li><a href="/article/1835499615491813376.htm" title="四章-32-点要素的聚合" target="_blank">四章-32-点要素的聚合</a> <span class="text-muted">彩云飘过</span> <div>本文基于腾讯课堂老胡的课《跟我学Openlayers--基础实例详解》做的学习笔记,使用的openlayers5.3.xapi。源码见1032.html,对应的官网示例https://openlayers.org/en/latest/examples/cluster.htmlhttps://openlayers.org/en/latest/examples/earthquake-clusters.</div> </li> <li><a href="/article/1835498925755297792.htm" title="DIV+CSS+JavaScript技术制作网页(旅游主题网页设计与制作)云南大理" target="_blank">DIV+CSS+JavaScript技术制作网页(旅游主题网页设计与制作)云南大理</a> <span class="text-muted">STU学生网页设计</span> <a class="tag" taget="_blank" href="/search/%E7%BD%91%E9%A1%B5%E8%AE%BE%E8%AE%A1/1.htm">网页设计</a><a class="tag" taget="_blank" href="/search/%E6%9C%9F%E6%9C%AB%E7%BD%91%E9%A1%B5%E4%BD%9C%E4%B8%9A/1.htm">期末网页作业</a><a class="tag" taget="_blank" href="/search/html%E9%9D%99%E6%80%81%E7%BD%91%E9%A1%B5/1.htm">html静态网页</a><a class="tag" taget="_blank" href="/search/html5%E6%9C%9F%E6%9C%AB%E5%A4%A7%E4%BD%9C%E4%B8%9A/1.htm">html5期末大作业</a><a class="tag" taget="_blank" href="/search/%E7%BD%91%E9%A1%B5%E8%AE%BE%E8%AE%A1/1.htm">网页设计</a><a class="tag" taget="_blank" href="/search/web%E5%A4%A7%E4%BD%9C%E4%B8%9A/1.htm">web大作业</a> <div>️精彩专栏推荐作者主页:【进入主页—获取更多源码】web前端期末大作业:【HTML5网页期末作业(1000套)】程序员有趣的告白方式:【HTML七夕情人节表白网页制作(110套)】文章目录二、网站介绍三、网站效果▶️1.视频演示2.图片演示四、网站代码HTML结构代码CSS样式代码五、更多源码二、网站介绍网站布局方面:计划采用目前主流的、能兼容各大主流浏览器、显示效果稳定的浮动网页布局结构。网站程</div> </li> <li><a href="/article/1835496149843275776.htm" title="关于城市旅游的HTML网页设计——(旅游风景云南 5页)HTML+CSS+JavaScript" target="_blank">关于城市旅游的HTML网页设计——(旅游风景云南 5页)HTML+CSS+JavaScript</a> <span class="text-muted">二挡起步</span> <a class="tag" taget="_blank" href="/search/web%E5%89%8D%E7%AB%AF%E6%9C%9F%E6%9C%AB%E5%A4%A7%E4%BD%9C%E4%B8%9A/1.htm">web前端期末大作业</a><a class="tag" taget="_blank" href="/search/javascript/1.htm">javascript</a><a class="tag" taget="_blank" href="/search/html/1.htm">html</a><a class="tag" taget="_blank" href="/search/css/1.htm">css</a><a class="tag" taget="_blank" href="/search/%E6%97%85%E6%B8%B8/1.htm">旅游</a><a class="tag" taget="_blank" href="/search/%E9%A3%8E%E6%99%AF/1.htm">风景</a> <div>⛵源码获取文末联系✈Web前端开发技术描述网页设计题材,DIV+CSS布局制作,HTML+CSS网页设计期末课程大作业|游景点介绍|旅游风景区|家乡介绍|等网站的设计与制作|HTML期末大学生网页设计作业,Web大学生网页HTML:结构CSS:样式在操作方面上运用了html5和css3,采用了div+css结构、表单、超链接、浮动、绝对定位、相对定位、字体样式、引用视频等基础知识JavaScrip</div> </li> <li><a href="/article/1835496148601761792.htm" title="HTML网页设计制作大作业(div+css) 云南我的家乡旅游景点 带文字滚动" target="_blank">HTML网页设计制作大作业(div+css) 云南我的家乡旅游景点 带文字滚动</a> <span class="text-muted">二挡起步</span> <a class="tag" taget="_blank" href="/search/web%E5%89%8D%E7%AB%AF%E6%9C%9F%E6%9C%AB%E5%A4%A7%E4%BD%9C%E4%B8%9A/1.htm">web前端期末大作业</a><a class="tag" taget="_blank" href="/search/web%E8%AE%BE%E8%AE%A1%E7%BD%91%E9%A1%B5%E8%A7%84%E5%88%92%E4%B8%8E%E8%AE%BE%E8%AE%A1/1.htm">web设计网页规划与设计</a><a class="tag" taget="_blank" href="/search/html/1.htm">html</a><a class="tag" taget="_blank" href="/search/css/1.htm">css</a><a class="tag" taget="_blank" href="/search/javascript/1.htm">javascript</a><a class="tag" taget="_blank" href="/search/dreamweaver/1.htm">dreamweaver</a><a class="tag" taget="_blank" href="/search/%E5%89%8D%E7%AB%AF/1.htm">前端</a> <div>Web前端开发技术描述网页设计题材,DIV+CSS布局制作,HTML+CSS网页设计期末课程大作业游景点介绍|旅游风景区|家乡介绍|等网站的设计与制作HTML期末大学生网页设计作业HTML:结构CSS:样式在操作方面上运用了html5和css3,采用了div+css结构、表单、超链接、浮动、绝对定位、相对定位、字体样式、引用视频等基础知识JavaScript:做与用户的交互行为文章目录前端学习路线</div> </li> <li><a href="/article/1835495644123459584.htm" title="Day1笔记-Python简介&标识符和关键字&输入输出" target="_blank">Day1笔记-Python简介&标识符和关键字&输入输出</a> <span class="text-muted">~在杰难逃~</span> <a class="tag" taget="_blank" href="/search/Python/1.htm">Python</a><a class="tag" taget="_blank" href="/search/python/1.htm">python</a><a class="tag" taget="_blank" href="/search/%E5%BC%80%E5%8F%91%E8%AF%AD%E8%A8%80/1.htm">开发语言</a><a class="tag" taget="_blank" href="/search/%E5%A4%A7%E6%95%B0%E6%8D%AE/1.htm">大数据</a><a class="tag" taget="_blank" href="/search/%E6%95%B0%E6%8D%AE%E5%88%86%E6%9E%90/1.htm">数据分析</a><a class="tag" taget="_blank" href="/search/%E6%95%B0%E6%8D%AE%E6%8C%96%E6%8E%98/1.htm">数据挖掘</a> <div>大家好,从今天开始呢,杰哥开展一个新的专栏,当然,数据分析部分也会不定时更新的,这个新的专栏主要是讲解一些Python的基础语法和知识,帮助0基础的小伙伴入门和学习Python,感兴趣的小伙伴可以开始认真学习啦!一、Python简介【了解】1.计算机工作原理编程语言就是用来定义计算机程序的形式语言。我们通过编程语言来编写程序代码,再通过语言处理程序执行向计算机发送指令,让计算机完成对应的工作,编程</div> </li> <li><a href="/article/1835489208152715264.htm" title="Rust基础知识" target="_blank">Rust基础知识</a> <span class="text-muted">GRKF15</span> <a class="tag" taget="_blank" href="/search/rust/1.htm">rust</a><a class="tag" taget="_blank" href="/search/%E5%BC%80%E5%8F%91%E8%AF%AD%E8%A8%80/1.htm">开发语言</a><a class="tag" taget="_blank" href="/search/%E5%90%8E%E7%AB%AF/1.htm">后端</a> <div>1.Rust语言简介1.1基础语法变量声明:let关键字用于声明变量,可以指定或不指定类型,如leta=10;和letmutc=30i32;。函数定义:使用fn关键字定义函数,并指定参数类型及返回类型,如fnadd(i:i32,j:i32)->i32{i+j}。控制流:包括if、else等,控制语句后需要使用;来结束语句。1.2数据类型整数类型:i8、i16、i32、i64、i128,以及无符号的</div> </li> <li><a href="/article/1835482277870661632.htm" title="简介Shell、zsh、bash" target="_blank">简介Shell、zsh、bash</a> <span class="text-muted">zhaosuningsn</span> <a class="tag" taget="_blank" href="/search/Shell/1.htm">Shell</a><a class="tag" taget="_blank" href="/search/zsh/1.htm">zsh</a><a class="tag" taget="_blank" href="/search/bash/1.htm">bash</a><a class="tag" taget="_blank" href="/search/shell/1.htm">shell</a><a class="tag" taget="_blank" href="/search/linux/1.htm">linux</a><a class="tag" taget="_blank" href="/search/bash/1.htm">bash</a> <div>Shell是Linux和Unix的外壳,类似衣服,负责外界与Linux和Unix内核的交互联系。例如接收终端用户及各种应用程序的命令,把接收的命令翻译成内核能理解的语言,传递给内核,并把内核处理接收的命令的结果返回给外界,即Shell是外界和内核沟通的桥梁或大门。Linux和Unix提供了多种Shell,其中有种bash,当然还有其他好多种。Mac电脑中不但有bash,还有一个zsh,预装的,据说</div> </li> <li><a href="/article/1835479134709575680.htm" title="《经年驯养》黎栀傅谨臣(高分女频)全章节在线阅读" target="_blank">《经年驯养》黎栀傅谨臣(高分女频)全章节在线阅读</a> <span class="text-muted">云轩书阁</span> <div>《经年驯养》黎栀傅谨臣(高分女频)全章节在线阅读主角:黎栀傅谨臣简介:傅谨臣养大黎栀,对她有求必应,黎栀以为那是爱。结婚两年才发现,她不过他豢养最好的一只宠物,可她拿他当全世界。关注微信公众号【看精灵】去回个书號【9328】,即可阅读【经年驯养】小说全文!第10章温柔的眼神,宠溺的动作,留恋的话近乎情人低语。是黎栀做梦都想要的一切……她口干舌燥,紧张难言。一颗心似被浸泡在温水里,酥麻舒适,无可抗拒</div> </li> <li><a href="/article/1835472149528276992.htm" title="小说《灰色年代》第三章、书中自有黄金屋/第二节(1)/作者:邵明" target="_blank">小说《灰色年代》第三章、书中自有黄金屋/第二节(1)/作者:邵明</a> <span class="text-muted">房作者_0970</span> <div>——第三章、第二节、科举与国考(1)科举制的简介:科举制度是古代读书人,参加选拔考试的制度,它是历代通过考试选拔官吏的一种手段,由于采用分科取士的办法,所以叫做科举。科举制从隋代开始实行,到清光绪三十一年(1905年)举行最后一科进士考试为止,经历了1300年,1905年9月2日,清政府废除科举制度。科举考前三名,分别为状元、榜眼、探花。这种划分和称谓是在元朝时确定下来的,明清时期沿袭了元朝的这种</div> </li> <li><a href="/article/1835463874560749568.htm" title="用Python实现简单的猜数字游戏" target="_blank">用Python实现简单的猜数字游戏</a> <span class="text-muted">程序媛了了</span> <a class="tag" taget="_blank" href="/search/python/1.htm">python</a><a class="tag" taget="_blank" href="/search/%E6%B8%B8%E6%88%8F/1.htm">游戏</a><a class="tag" taget="_blank" href="/search/java/1.htm">java</a> <div>猜数字游戏代码:importrandomdefpythonit():a=random.randint(1,100)n=int(input("输入你猜想的数字:"))whilen!=a:ifn>a:print("很遗憾,猜大了")n=int(input("请再次输入你猜想的数字:"))elifna::如果玩家猜的数字n大于随机数字a,则输出"很遗憾,猜大了",并提示玩家再次输入。elifn<a::如</div> </li> <li><a href="/article/1835460217190576128.htm" title="(179)时序收敛--->(29)时序收敛二九" target="_blank">(179)时序收敛--->(29)时序收敛二九</a> <span class="text-muted">FPGA系统设计指南针</span> <a class="tag" taget="_blank" href="/search/FPGA%E7%B3%BB%E7%BB%9F%E8%AE%BE%E8%AE%A1%28%E5%86%85%E8%AE%AD%29/1.htm">FPGA系统设计(内训)</a><a class="tag" taget="_blank" href="/search/fpga%E5%BC%80%E5%8F%91/1.htm">fpga开发</a><a class="tag" taget="_blank" href="/search/%E6%97%B6%E5%BA%8F%E6%94%B6%E6%95%9B/1.htm">时序收敛</a> <div>1目录(a)FPGA简介(b)Verilog简介(c)时钟简介(d)时序收敛二九(e)结束1FPGA简介(a)FPGA(FieldProgrammableGateArray)是在PAL(可编程阵列逻辑)、GAL(通用阵列逻辑)等可编程器件的基础上进一步发展的产物。它是作为专用集成电路(ASIC)领域中的一种半定制电路而出现的,既解决了定制电路的不足,又克服了原有可编程器件门电路数有限的缺点。(b)</div> </li> <li><a href="/article/1835460216590790656.htm" title="(180)时序收敛--->(30)时序收敛三十" target="_blank">(180)时序收敛--->(30)时序收敛三十</a> <span class="text-muted">FPGA系统设计指南针</span> <a class="tag" taget="_blank" href="/search/FPGA%E7%B3%BB%E7%BB%9F%E8%AE%BE%E8%AE%A1%28%E5%86%85%E8%AE%AD%29/1.htm">FPGA系统设计(内训)</a><a class="tag" taget="_blank" href="/search/fpga%E5%BC%80%E5%8F%91/1.htm">fpga开发</a><a class="tag" taget="_blank" href="/search/%E6%97%B6%E5%BA%8F%E6%94%B6%E6%95%9B/1.htm">时序收敛</a> <div>1目录(a)FPGA简介(b)Verilog简介(c)时钟简介(d)时序收敛三十(e)结束1FPGA简介(a)FPGA(FieldProgrammableGateArray)是在PAL(可编程阵列逻辑)、GAL(通用阵列逻辑)等可编程器件的基础上进一步发展的产物。它是作为专用集成电路(ASIC)领域中的一种半定制电路而出现的,既解决了定制电路的不足,又克服了原有可编程器件门电路数有限的缺点。(b)</div> </li> <li><a href="/article/1835459963326132224.htm" title="(158)时序收敛--->(08)时序收敛八" target="_blank">(158)时序收敛--->(08)时序收敛八</a> <span class="text-muted">FPGA系统设计指南针</span> <a class="tag" taget="_blank" href="/search/FPGA%E7%B3%BB%E7%BB%9F%E8%AE%BE%E8%AE%A1%28%E5%86%85%E8%AE%AD%29/1.htm">FPGA系统设计(内训)</a><a class="tag" taget="_blank" href="/search/fpga%E5%BC%80%E5%8F%91/1.htm">fpga开发</a><a class="tag" taget="_blank" href="/search/%E6%97%B6%E5%BA%8F%E6%94%B6%E6%95%9B/1.htm">时序收敛</a> <div>1目录(a)FPGA简介(b)Verilog简介(c)时钟简介(d)时序收敛八(e)结束1FPGA简介(a)FPGA(FieldProgrammableGateArray)是在PAL(可编程阵列逻辑)、GAL(通用阵列逻辑)等可编程器件的基础上进一步发展的产物。它是作为专用集成电路(ASIC)领域中的一种半定制电路而出现的,既解决了定制电路的不足,又克服了原有可编程器件门电路数有限的缺点。(b)F</div> </li> <li><a href="/article/1835459963850420224.htm" title="(159)时序收敛--->(09)时序收敛九" target="_blank">(159)时序收敛--->(09)时序收敛九</a> <span class="text-muted">FPGA系统设计指南针</span> <a class="tag" taget="_blank" href="/search/FPGA%E7%B3%BB%E7%BB%9F%E8%AE%BE%E8%AE%A1%28%E5%86%85%E8%AE%AD%29/1.htm">FPGA系统设计(内训)</a><a class="tag" taget="_blank" href="/search/fpga%E5%BC%80%E5%8F%91/1.htm">fpga开发</a><a class="tag" taget="_blank" href="/search/%E6%97%B6%E5%BA%8F%E6%94%B6%E6%95%9B/1.htm">时序收敛</a> <div>1目录(a)FPGA简介(b)Verilog简介(c)时钟简介(d)时序收敛九(e)结束1FPGA简介(a)FPGA(FieldProgrammableGateArray)是在PAL(可编程阵列逻辑)、GAL(通用阵列逻辑)等可编程器件的基础上进一步发展的产物。它是作为专用集成电路(ASIC)领域中的一种半定制电路而出现的,既解决了定制电路的不足,又克服了原有可编程器件门电路数有限的缺点。(b)F</div> </li> <li><a href="/article/1835459964387291136.htm" title="(160)时序收敛--->(10)时序收敛十" target="_blank">(160)时序收敛--->(10)时序收敛十</a> <span class="text-muted">FPGA系统设计指南针</span> <a class="tag" taget="_blank" href="/search/FPGA%E7%B3%BB%E7%BB%9F%E8%AE%BE%E8%AE%A1%28%E5%86%85%E8%AE%AD%29/1.htm">FPGA系统设计(内训)</a><a class="tag" taget="_blank" href="/search/fpga%E5%BC%80%E5%8F%91/1.htm">fpga开发</a><a class="tag" taget="_blank" href="/search/%E6%97%B6%E5%BA%8F%E6%94%B6%E6%95%9B/1.htm">时序收敛</a> <div>1目录(a)FPGA简介(b)Verilog简介(c)时钟简介(d)时序收敛十(e)结束1FPGA简介(a)FPGA(FieldProgrammableGateArray)是在PAL(可编程阵列逻辑)、GAL(通用阵列逻辑)等可编程器件的基础上进一步发展的产物。它是作为专用集成电路(ASIC)领域中的一种半定制电路而出现的,既解决了定制电路的不足,又克服了原有可编程器件门电路数有限的缺点。(b)F</div> </li> <li><a href="/article/1835459837115330560.htm" title="(153)时序收敛--->(03)时序收敛三" target="_blank">(153)时序收敛--->(03)时序收敛三</a> <span class="text-muted">FPGA系统设计指南针</span> <a class="tag" taget="_blank" href="/search/FPGA%E7%B3%BB%E7%BB%9F%E8%AE%BE%E8%AE%A1%28%E5%86%85%E8%AE%AD%29/1.htm">FPGA系统设计(内训)</a><a class="tag" taget="_blank" href="/search/fpga%E5%BC%80%E5%8F%91/1.htm">fpga开发</a><a class="tag" taget="_blank" href="/search/%E6%97%B6%E5%BA%8F%E6%94%B6%E6%95%9B/1.htm">时序收敛</a> <div>1目录(a)FPGA简介(b)Verilog简介(c)时钟简介(d)时序收敛三(e)结束1FPGA简介(a)FPGA(FieldProgrammableGateArray)是在PAL(可编程阵列逻辑)、GAL(通用阵列逻辑)等可编程器件的基础上进一步发展的产物。它是作为专用集成电路(ASIC)领域中的一种半定制电路而出现的,既解决了定制电路的不足,又克服了原有可编程器件门电路数有限的缺点。(b)F</div> </li> <li><a href="/article/1835459333165510656.htm" title="(121)DAC接口--->(006)基于FPGA实现DAC8811接口" target="_blank">(121)DAC接口--->(006)基于FPGA实现DAC8811接口</a> <span class="text-muted">FPGA系统设计指南针</span> <a class="tag" taget="_blank" href="/search/FPGA%E6%8E%A5%E5%8F%A3%E5%BC%80%E5%8F%91%28%E9%A1%B9%E7%9B%AE%E5%AE%9E%E6%88%98%29/1.htm">FPGA接口开发(项目实战)</a><a class="tag" taget="_blank" href="/search/fpga%E5%BC%80%E5%8F%91/1.htm">fpga开发</a><a class="tag" taget="_blank" href="/search/FPGA/1.htm">FPGA</a><a class="tag" taget="_blank" href="/search/IC/1.htm">IC</a> <div>1目录(a)FPGA简介(b)IC简介(c)Verilog简介(d)基于FPGA实现DAC8811接口(e)结束1FPGA简介(a)FPGA(FieldProgrammableGateArray)是在PAL(可编程阵列逻辑)、GAL(通用阵列逻辑)等可编程器件的基础上进一步发展的产物。它是作为专用集成电路(ASIC)领域中的一种半定制电路而出现的,既解决了定制电路的不足,又克服了原有可编程器件门电</div> </li> <li><a href="/article/1835458955267108864.htm" title="FPGA复位专题---(3)上电复位?" target="_blank">FPGA复位专题---(3)上电复位?</a> <span class="text-muted">FPGA系统设计指南针</span> <a class="tag" taget="_blank" href="/search/FPGA%E7%B3%BB%E7%BB%9F%E8%AE%BE%E8%AE%A1%28%E5%86%85%E8%AE%AD%29/1.htm">FPGA系统设计(内训)</a><a class="tag" taget="_blank" href="/search/fpga%E5%BC%80%E5%8F%91/1.htm">fpga开发</a> <div>(3)上电复位?1目录(a)FPGA简介(b)Verilog简介(c)复位简介(d)上电复位?(e)结束1FPGA简介(a)FPGA(FieldProgrammableGateArray)是在PAL(可编程阵列逻辑)、GAL(通用阵列逻辑)等可编程器件的基础上进一步发展的产物。它是作为专用集成电路(ASIC)领域中的一种半定制电路而出现的,既解决了定制电路的不足,又克服了原有可编程器件门电路数有限</div> </li> <li><a href="/article/1835457443690278912.htm" title="[Python] 数据结构 详解及代码" target="_blank">[Python] 数据结构 详解及代码</a> <span class="text-muted">AIAdvocate</span> <a class="tag" taget="_blank" href="/search/%E7%AE%97%E6%B3%95/1.htm">算法</a><a class="tag" taget="_blank" href="/search/python/1.htm">python</a><a class="tag" taget="_blank" href="/search/%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84/1.htm">数据结构</a><a class="tag" taget="_blank" href="/search/%E9%93%BE%E8%A1%A8/1.htm">链表</a> <div>今日内容大纲介绍数据结构介绍列表链表1.数据结构和算法简介程序大白话翻译,程序=数据结构+算法数据结构指的是存储,组织数据的方式.算法指的是为了解决实际业务问题而思考思路和方法,就叫:算法.2.算法的5大特性介绍算法具有独立性算法是解决问题的思路和方式,最重要的是思维,而不是语言,其(算法)可以通过多种语言进行演绎.5大特性有输入,需要传入1或者多个参数有输出,需要返回1个或者多个结果有穷性,执行</div> </li> <li><a href="/article/1835455834419720192.htm" title="果冻宝盒邀请码怎么填好,附6个顶级有效邀请码" target="_blank">果冻宝盒邀请码怎么填好,附6个顶级有效邀请码</a> <span class="text-muted">小小编007</span> <div>在当今的电商时代,返利app已经成为了很多网购达人的必备工具。其中,果冻宝盒作为一款备受好评的返利软件,吸引了大量用户。而对于一些新手用户来说,填写果冻宝盒的邀请码可能会让他们感到困惑。本文将详细介绍果冻宝盒返利app,并指导用户如何正确填写邀请码。一、果冻宝盒返利app简介果冻宝盒是一款集折扣、返利、分享为一体的购物app。用户在果冻宝盒上购物时,不仅可以享受到商家提供的折扣,还可以获得果冻宝盒</div> </li> <li><a href="/article/1835455835682205696.htm" title="《前夫如龙》王昊江琼(独家小说)精彩TXT阅读" target="_blank">《前夫如龙》王昊江琼(独家小说)精彩TXT阅读</a> <span class="text-muted">海边书楼</span> <div>《前夫如龙》王昊江琼(独家小说)精彩TXT阅读主角:王昊江琼简介:离婚那天,她视他如泥土。谁曾想,消息一出,天下震动!可关注微信公众号【风车文楼】去回个书号【203】,即可免费阅读【前夫如龙】全文!江芸并未听出华少龙声音里的冷漠,依旧一脸笑容道:“是啊,那个废物哪儿配得上我姐?这些年,我姐对他仁至义尽了。以后,华少爷可以多跟我姐接触接触,只有华少爷这样的人,才配得上我姐啊!”江琼低着头,微微有些娇</div> </li> <li><a href="/article/1835455426175528960.htm" title="(182)时序收敛--->(32)时序收敛三二" target="_blank">(182)时序收敛--->(32)时序收敛三二</a> <span class="text-muted">FPGA系统设计指南针</span> <a class="tag" taget="_blank" href="/search/FPGA%E7%B3%BB%E7%BB%9F%E8%AE%BE%E8%AE%A1%28%E5%86%85%E8%AE%AD%29/1.htm">FPGA系统设计(内训)</a><a class="tag" taget="_blank" href="/search/fpga%E5%BC%80%E5%8F%91/1.htm">fpga开发</a><a class="tag" taget="_blank" href="/search/%E6%97%B6%E5%BA%8F%E6%94%B6%E6%95%9B/1.htm">时序收敛</a> <div>1目录(a)FPGA简介(b)Verilog简介(c)时钟简介(d)时序收敛三二(e)结束1FPGA简介(a)FPGA(FieldProgrammableGateArray)是在PAL(可编程阵列逻辑)、GAL(通用阵列逻辑)等可编程器件的基础上进一步发展的产物。它是作为专用集成电路(ASIC)领域中的一种半定制电路而出现的,既解决了定制电路的不足,又克服了原有可编程器件门电路数有限的缺点。(b)</div> </li> <li><a href="/article/1835454795712917504.htm" title="esp32开发快速入门 8 : MQTT 的快速入门,基于esp32实现MQTT通信" target="_blank">esp32开发快速入门 8 : MQTT 的快速入门,基于esp32实现MQTT通信</a> <span class="text-muted">z755924843</span> <a class="tag" taget="_blank" href="/search/ESP32%E5%BC%80%E5%8F%91%E5%BF%AB%E9%80%9F%E5%85%A5%E9%97%A8/1.htm">ESP32开发快速入门</a><a class="tag" taget="_blank" href="/search/%E6%9C%8D%E5%8A%A1%E5%99%A8/1.htm">服务器</a><a class="tag" taget="_blank" href="/search/%E7%BD%91%E7%BB%9C/1.htm">网络</a><a class="tag" taget="_blank" href="/search/%E8%BF%90%E7%BB%B4/1.htm">运维</a> <div>MQTT介绍简介MQTT(MessageQueuingTelemetryTransport,消息队列遥测传输协议),是一种基于发布/订阅(publish/subscribe)模式的"轻量级"通讯协议,该协议构建于TCP/IP协议上,由IBM在1999年发布。MQTT最大优点在于,可以以极少的代码和有限的带宽,为连接远程设备提供实时可靠的消息服务。作为一种低开销、低带宽占用的即时通讯协议,使其在物联</div> </li> <li><a href="/article/1835449249425354752.htm" title="Python算法L5:贪心算法" target="_blank">Python算法L5:贪心算法</a> <span class="text-muted">小熊同学哦</span> <a class="tag" taget="_blank" href="/search/Python%E7%AE%97%E6%B3%95/1.htm">Python算法</a><a class="tag" taget="_blank" href="/search/%E7%AE%97%E6%B3%95/1.htm">算法</a><a class="tag" taget="_blank" href="/search/python/1.htm">python</a><a class="tag" taget="_blank" href="/search/%E8%B4%AA%E5%BF%83%E7%AE%97%E6%B3%95/1.htm">贪心算法</a> <div>Python贪心算法简介目录Python贪心算法简介贪心算法的基本步骤贪心算法的适用场景经典贪心算法问题1.**零钱兑换问题**2.**区间调度问题**3.**背包问题**贪心算法的优缺点优点:缺点:结语贪心算法(GreedyAlgorithm)是一种在每一步选择中都采取当前最优或最优解的算法。它的核心思想是,在保证每一步局部最优的情况下,希望通过贪心选择达到全局最优解。虽然贪心算法并不总能得到全</div> </li> <li><a href="/article/84.htm" title="继之前的线程循环加到窗口中运行" target="_blank">继之前的线程循环加到窗口中运行</a> <span class="text-muted">3213213333332132</span> <a class="tag" taget="_blank" href="/search/java/1.htm">java</a><a class="tag" taget="_blank" href="/search/thread/1.htm">thread</a><a class="tag" taget="_blank" href="/search/JFrame/1.htm">JFrame</a><a class="tag" taget="_blank" href="/search/JPanel/1.htm">JPanel</a> <div>之前写了有关java线程的循环执行和结束,因为想制作成exe文件,想把执行的效果加到窗口上,所以就结合了JFrame和JPanel写了这个程序,这里直接贴出代码,在窗口上运行的效果下面有附图。 package thread; import java.awt.Graphics; import java.text.SimpleDateFormat; import java.util</div> </li> <li><a href="/article/211.htm" title="linux 常用命令" target="_blank">linux 常用命令</a> <span class="text-muted">BlueSkator</span> <a class="tag" taget="_blank" href="/search/linux/1.htm">linux</a><a class="tag" taget="_blank" href="/search/%E5%91%BD%E4%BB%A4/1.htm">命令</a> <div>1.grep 相信这个命令可以说是大家最常用的命令之一了。尤其是查询生产环境的日志,这个命令绝对是必不可少的。 但之前总是习惯于使用 (grep -n 关键字 文件名 )查出关键字以及该关键字所在的行数,然后再用 (sed -n  '100,200p' 文件名),去查出该关键字之后的日志内容。 但其实还有更简便的办法,就是用(grep  -B n、-A n、-C n 关键</div> </li> <li><a href="/article/338.htm" title="php heredoc原文档和nowdoc语法" target="_blank">php heredoc原文档和nowdoc语法</a> <span class="text-muted">dcj3sjt126com</span> <a class="tag" taget="_blank" href="/search/PHP/1.htm">PHP</a><a class="tag" taget="_blank" href="/search/heredoc/1.htm">heredoc</a><a class="tag" taget="_blank" href="/search/nowdoc/1.htm">nowdoc</a> <div><!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>Current To-Do List</title> </head> <body> <?</div> </li> <li><a href="/article/465.htm" title="overflow的属性" target="_blank">overflow的属性</a> <span class="text-muted">周华华</span> <a class="tag" taget="_blank" href="/search/JavaScript/1.htm">JavaScript</a> <div><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml&q</div> </li> <li><a href="/article/592.htm" title="《我所了解的Java》——总体目录" target="_blank">《我所了解的Java》——总体目录</a> <span class="text-muted">g21121</span> <a class="tag" taget="_blank" href="/search/java/1.htm">java</a> <div>        准备用一年左右时间写一个系列的文章《我所了解的Java》,目录及内容会不断完善及调整。         在编写相关内容时难免出现笔误、代码无法执行、名词理解错误等,请大家及时指出,我会第一时间更正。    &n</div> </li> <li><a href="/article/719.htm" title="[简单]docx4j常用方法小结" target="_blank">[简单]docx4j常用方法小结</a> <span class="text-muted">53873039oycg</span> <a class="tag" taget="_blank" href="/search/docx/1.htm">docx</a> <div>        本代码基于docx4j-3.2.0,在office word 2007上测试通过。代码如下:         import java.io.File; import java.io.FileInputStream; import ja</div> </li> <li><a href="/article/846.htm" title="Spring配置学习" target="_blank">Spring配置学习</a> <span class="text-muted">云端月影</span> <a class="tag" taget="_blank" href="/search/spring%E9%85%8D%E7%BD%AE/1.htm">spring配置</a> <div> 首先来看一个标准的Spring配置文件 applicationContext.xml <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi=&q</div> </li> <li><a href="/article/973.htm" title="Java新手入门的30个基本概念三" target="_blank">Java新手入门的30个基本概念三</a> <span class="text-muted">aijuans</span> <a class="tag" taget="_blank" href="/search/java/1.htm">java</a><a class="tag" taget="_blank" href="/search/%E6%96%B0%E6%89%8B/1.htm">新手</a><a class="tag" taget="_blank" href="/search/java+%E5%85%A5%E9%97%A8/1.htm">java 入门</a> <div>17.Java中的每一个类都是从Object类扩展而来的。  18.object类中的equal和toString方法。  equal用于测试一个对象是否同另一个对象相等。  toString返回一个代表该对象的字符串,几乎每一个类都会重载该方法,以便返回当前状态的正确表示.(toString 方法是一个很重要的方法)   19.通用编程:任何类类型的所有值都可以同object类性的变量来代替。 </div> </li> <li><a href="/article/1100.htm" title="《2008 IBM Rational 软件开发高峰论坛会议》小记" target="_blank">《2008 IBM Rational 软件开发高峰论坛会议》小记</a> <span class="text-muted">antonyup_2006</span> <a class="tag" taget="_blank" href="/search/%E8%BD%AF%E4%BB%B6%E6%B5%8B%E8%AF%95/1.htm">软件测试</a><a class="tag" taget="_blank" href="/search/%E6%95%8F%E6%8D%B7%E5%BC%80%E5%8F%91/1.htm">敏捷开发</a><a class="tag" taget="_blank" href="/search/%E9%A1%B9%E7%9B%AE%E7%AE%A1%E7%90%86/1.htm">项目管理</a><a class="tag" taget="_blank" href="/search/IBM/1.htm">IBM</a><a class="tag" taget="_blank" href="/search/%E6%B4%BB%E5%8A%A8/1.htm">活动</a> <div>我一直想写些总结,用于交流和备忘,然都没提笔,今以一篇参加活动的感受小记开个头,呵呵! 其实参加《2008 IBM Rational 软件开发高峰论坛会议》是9月4号,那天刚好调休.但接着项目颇为忙,所以今天在中秋佳节的假期里整理了下. 参加这次活动是一个朋友给的一个邀请书,才知道有这样的一个活动,虽然现在项目暂时没用到IBM的解决方案,但觉的参与这样一个活动可以拓宽下视野和相关知识.</div> </li> <li><a href="/article/1227.htm" title="PL/SQL的过程编程,异常,声明变量,PL/SQL块" target="_blank">PL/SQL的过程编程,异常,声明变量,PL/SQL块</a> <span class="text-muted">百合不是茶</span> <a class="tag" taget="_blank" href="/search/PL%2FSQL%E7%9A%84%E8%BF%87%E7%A8%8B%E7%BC%96%E7%A8%8B/1.htm">PL/SQL的过程编程</a><a class="tag" taget="_blank" href="/search/%E5%BC%82%E5%B8%B8/1.htm">异常</a><a class="tag" taget="_blank" href="/search/PL%2FSQL%E5%9D%97/1.htm">PL/SQL块</a><a class="tag" taget="_blank" href="/search/%E5%A3%B0%E6%98%8E%E5%8F%98%E9%87%8F/1.htm">声明变量</a> <div>PL/SQL;    过程; 符号; 变量; PL/SQL块; 输出; 异常;     PL/SQL 是过程语言(Procedural Language)与结构化查询语言(SQL)结合而成的编程语言PL/SQL 是对 SQL 的扩展,sql的执行时每次都要写操作</div> </li> <li><a href="/article/1354.htm" title="Mockito(三)--完整功能介绍" target="_blank">Mockito(三)--完整功能介绍</a> <span class="text-muted">bijian1013</span> <a class="tag" taget="_blank" href="/search/%E6%8C%81%E7%BB%AD%E9%9B%86%E6%88%90/1.htm">持续集成</a><a class="tag" taget="_blank" href="/search/mockito/1.htm">mockito</a><a class="tag" taget="_blank" href="/search/%E5%8D%95%E5%85%83%E6%B5%8B%E8%AF%95/1.htm">单元测试</a> <div>        mockito官网:http://code.google.com/p/mockito/,打开documentation可以看到官方最新的文档资料。 一.使用mockito验证行为 //首先要import Mockito import static org.mockito.Mockito.*; //mo</div> </li> <li><a href="/article/1481.htm" title="精通Oracle10编程SQL(8)使用复合数据类型" target="_blank">精通Oracle10编程SQL(8)使用复合数据类型</a> <span class="text-muted">bijian1013</span> <a class="tag" taget="_blank" href="/search/oracle/1.htm">oracle</a><a class="tag" taget="_blank" href="/search/%E6%95%B0%E6%8D%AE%E5%BA%93/1.htm">数据库</a><a class="tag" taget="_blank" href="/search/plsql/1.htm">plsql</a> <div>/* *使用复合数据类型 */ --PL/SQL记录 --定义PL/SQL记录 --自定义PL/SQL记录 DECLARE TYPE emp_record_type IS RECORD( name emp.ename%TYPE, salary emp.sal%TYPE, dno emp.deptno%TYPE ); emp_</div> </li> <li><a href="/article/1608.htm" title="【Linux常用命令一】grep命令" target="_blank">【Linux常用命令一】grep命令</a> <span class="text-muted">bit1129</span> <a class="tag" taget="_blank" href="/search/Linux%E5%B8%B8%E7%94%A8%E5%91%BD%E4%BB%A4/1.htm">Linux常用命令</a> <div>grep命令格式   grep [option] pattern [file-list]     grep命令用于在指定的文件(一个或者多个,file-list)中查找包含模式串(pattern)的行,[option]用于控制grep命令的查找方式。   pattern可以是普通字符串,也可以是正则表达式,当查找的字符串包含正则表达式字符或者特</div> </li> <li><a href="/article/1735.htm" title="mybatis3入门学习笔记" target="_blank">mybatis3入门学习笔记</a> <span class="text-muted">白糖_</span> <a class="tag" taget="_blank" href="/search/sql/1.htm">sql</a><a class="tag" taget="_blank" href="/search/ibatis/1.htm">ibatis</a><a class="tag" taget="_blank" href="/search/qq/1.htm">qq</a><a class="tag" taget="_blank" href="/search/jdbc/1.htm">jdbc</a><a class="tag" taget="_blank" href="/search/%E9%85%8D%E7%BD%AE%E7%AE%A1%E7%90%86/1.htm">配置管理</a> <div>MyBatis 的前身就是iBatis,是一个数据持久层(ORM)框架。  MyBatis 是支持普通 SQL 查询,存储过程和高级映射的优秀持久层框架。MyBatis对JDBC进行了一次很浅的封装。   以前也学过iBatis,因为MyBatis是iBatis的升级版本,最初以为改动应该不大,实际结果是MyBatis对配置文件进行了一些大的改动,使整个框架更加方便人性化。</div> </li> <li><a href="/article/1862.htm" title="Linux 命令神器:lsof 入门" target="_blank">Linux 命令神器:lsof 入门</a> <span class="text-muted">ronin47</span> <a class="tag" taget="_blank" href="/search/lsof/1.htm">lsof</a> <div>       lsof是系统管理/安全的尤伯工具。我大多数时候用它来从系统获得与网络连接相关的信息,但那只是这个强大而又鲜为人知的应用的第一步。将这个工具称之为lsof真实名副其实,因为它是指“列出打开文件(lists openfiles)”。而有一点要切记,在Unix中一切(包括网络套接口)都是文件。 有趣的是,lsof也是有着最多</div> </li> <li><a href="/article/1989.htm" title="java实现两个大数相加,可能存在溢出。" target="_blank">java实现两个大数相加,可能存在溢出。</a> <span class="text-muted">bylijinnan</span> <a class="tag" taget="_blank" href="/search/java%E5%AE%9E%E7%8E%B0/1.htm">java实现</a> <div> import java.math.BigInteger; import java.util.regex.Matcher; import java.util.regex.Pattern; public class BigIntegerAddition { /** * 题目:java实现两个大数相加,可能存在溢出。 * 如123456789 + 987654321</div> </li> <li><a href="/article/2116.htm" title="Kettle学习资料分享,附大神用Kettle的一套流程完成对整个数据库迁移方法" target="_blank">Kettle学习资料分享,附大神用Kettle的一套流程完成对整个数据库迁移方法</a> <span class="text-muted">Kai_Ge</span> <a class="tag" taget="_blank" href="/search/Kettle/1.htm">Kettle</a> <div>Kettle学习资料分享   Kettle 3.2 使用说明书 目录 概述..........................................................................................................................................7 1.Kettle 资源库管</div> </li> <li><a href="/article/2243.htm" title="[货币与金融]钢之炼金术士" target="_blank">[货币与金融]钢之炼金术士</a> <span class="text-muted">comsci</span> <a class="tag" taget="_blank" href="/search/%E9%87%91%E8%9E%8D/1.htm">金融</a> <div>        自古以来,都有一些人在从事炼金术的工作.........但是很少有成功的        那么随着人类在理论物理和工程物理上面取得的一些突破性进展......        炼金术这个古老</div> </li> <li><a href="/article/2370.htm" title="Toast原来也可以多样化" target="_blank">Toast原来也可以多样化</a> <span class="text-muted">dai_lm</span> <a class="tag" taget="_blank" href="/search/android/1.htm">android</a><a class="tag" taget="_blank" href="/search/toast/1.htm">toast</a> <div>Style 1: 默认 Toast def = Toast.makeText(this, "default", Toast.LENGTH_SHORT); def.show(); Style 2: 顶部显示 Toast top = Toast.makeText(this, "top", Toast.LENGTH_SHORT); t</div> </li> <li><a href="/article/2497.htm" title="java数据计算的几种解决方法3" target="_blank">java数据计算的几种解决方法3</a> <span class="text-muted">datamachine</span> <a class="tag" taget="_blank" href="/search/java/1.htm">java</a><a class="tag" taget="_blank" href="/search/hadoop/1.htm">hadoop</a><a class="tag" taget="_blank" href="/search/ibatis/1.htm">ibatis</a><a class="tag" taget="_blank" href="/search/r-langue/1.htm">r-langue</a><a class="tag" taget="_blank" href="/search/r/1.htm">r</a> <div>4、iBatis     简单敏捷因此强大的数据计算层。和Hibernate不同,它鼓励写SQL,所以学习成本最低。同时它用最小的代价实现了计算脚本和JAVA代码的解耦,只用20%的代价就实现了hibernate 80%的功能,没实现的20%是计算脚本和数据库的解耦。     复杂计算环境是它的弱项,比如:分布式计算、复杂计算、非数据</div> </li> <li><a href="/article/2624.htm" title="向网页中插入透明Flash的方法和技巧" target="_blank">向网页中插入透明Flash的方法和技巧</a> <span class="text-muted">dcj3sjt126com</span> <a class="tag" taget="_blank" href="/search/html/1.htm">html</a><a class="tag" taget="_blank" href="/search/Web/1.htm">Web</a><a class="tag" taget="_blank" href="/search/Flash/1.htm">Flash</a> <div>将 Flash 作品插入网页的时候,我们有时候会需要将它设为透明,有时候我们需要在Flash的背面插入一些漂亮的图片,搭配出漂亮的效果……下面我们介绍一些将Flash插入网页中的一些透明的设置技巧。   一、Swf透明、无坐标控制  首先教大家最简单的插入Flash的代码,透明,无坐标控制:   注意wmode="transparent"是控制Flash是否透明</div> </li> <li><a href="/article/2751.htm" title="ios UICollectionView的使用" target="_blank">ios UICollectionView的使用</a> <span class="text-muted">dcj3sjt126com</span> <div>UICollectionView的使用有两种方法,一种是继承UICollectionViewController,这个Controller会自带一个UICollectionView;另外一种是作为一个视图放在普通的UIViewController里面。 个人更喜欢第二种。下面采用第二种方式简单介绍一下UICollectionView的使用。 1.UIViewController实现委托,代码如</div> </li> <li><a href="/article/2878.htm" title="Eos平台java公共逻辑" target="_blank">Eos平台java公共逻辑</a> <span class="text-muted">蕃薯耀</span> <a class="tag" taget="_blank" href="/search/Eos%E5%B9%B3%E5%8F%B0java%E5%85%AC%E5%85%B1%E9%80%BB%E8%BE%91/1.htm">Eos平台java公共逻辑</a><a class="tag" taget="_blank" href="/search/Eos%E5%B9%B3%E5%8F%B0/1.htm">Eos平台</a><a class="tag" taget="_blank" href="/search/java%E5%85%AC%E5%85%B1%E9%80%BB%E8%BE%91/1.htm">java公共逻辑</a> <div> Eos平台java公共逻辑 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 蕃薯耀 2015年6月1日 17:20:4</div> </li> <li><a href="/article/3005.htm" title="SpringMVC4零配置--Web上下文配置【MvcConfig】" target="_blank">SpringMVC4零配置--Web上下文配置【MvcConfig】</a> <span class="text-muted">hanqunfeng</span> <a class="tag" taget="_blank" href="/search/springmvc4/1.htm">springmvc4</a> <div>与SpringSecurity的配置类似,spring同样为我们提供了一个实现类WebMvcConfigurationSupport和一个注解@EnableWebMvc以帮助我们减少bean的声明。   applicationContext-MvcConfig.xml <!-- 启用注解,并定义组件查找规则 ,mvc层只负责扫描@Controller --> <</div> </li> <li><a href="/article/3132.htm" title="解决ie和其他浏览器poi下载excel文件名乱码" target="_blank">解决ie和其他浏览器poi下载excel文件名乱码</a> <span class="text-muted">jackyrong</span> <a class="tag" taget="_blank" href="/search/Excel/1.htm">Excel</a> <div>   使用poi,做传统的excel导出,然后想在浏览器中,让用户选择另存为,保存用户下载的xls文件,这个时候,可能的是在ie下出现乱码(ie,9,10,11),但在firefox,chrome下没乱码, 因此必须综合判断,编写一个工具类:      /** * * @Title: pro</div> </li> <li><a href="/article/3259.htm" title="挥洒泪水的青春" target="_blank">挥洒泪水的青春</a> <span class="text-muted">lampcy</span> <a class="tag" taget="_blank" href="/search/%E7%BC%96%E7%A8%8B/1.htm">编程</a><a class="tag" taget="_blank" href="/search/%E7%94%9F%E6%B4%BB/1.htm">生活</a><a class="tag" taget="_blank" href="/search/%E7%A8%8B%E5%BA%8F%E5%91%98/1.htm">程序员</a> <div>2015年2月28日,我辞职了,离开了相处一年的触控,转过身--挥洒掉泪水,毅然来到了兄弟连,背负着许多的不解、质疑——”你一个零基础、脑子又不聪明的人,还敢跨行业,选择Unity3D?“,”真是不自量力••••••“,”真是初生牛犊不怕虎•••••“,••••••我只是淡淡一笑,拎着行李----坐上了通向挥洒泪水的青春之地——兄弟连! 这就是我青春的分割线,不后悔,只会去用泪水浇灌——已经来到</div> </li> <li><a href="/article/3386.htm" title="稳增长之中国股市两点意见-----严控做空,建立涨跌停版停牌重组机制" target="_blank">稳增长之中国股市两点意见-----严控做空,建立涨跌停版停牌重组机制</a> <span class="text-muted">nannan408</span> <div>   对于股市,我们国家的监管还是有点拼的,但始终拼不过飞流直下的恐慌,为什么呢?    笔者首先支持股市的监管。对于股市越管越荡的现象,笔者认为首先是做空力量超过了股市自身的升力,并且对于跌停停牌重组的快速反应还没建立好,上市公司对于股价下跌没有很好的利好支撑。    我们来看美国和香港是怎么应对股灾的。美国是靠禁止重要股票做空,在</div> </li> <li><a href="/article/3513.htm" title="动态设置iframe高度(iframe高度自适应)" target="_blank">动态设置iframe高度(iframe高度自适应)</a> <span class="text-muted">Rainbow702</span> <a class="tag" taget="_blank" href="/search/JavaScript/1.htm">JavaScript</a><a class="tag" taget="_blank" href="/search/iframe/1.htm">iframe</a><a class="tag" taget="_blank" href="/search/contentDocument/1.htm">contentDocument</a><a class="tag" taget="_blank" href="/search/%E9%AB%98%E5%BA%A6%E8%87%AA%E9%80%82%E5%BA%94/1.htm">高度自适应</a><a class="tag" taget="_blank" href="/search/%E5%B1%80%E9%83%A8%E5%88%B7%E6%96%B0/1.htm">局部刷新</a> <div>如果需要对画面中的部分区域作局部刷新,大家可能都会想到使用ajax。 但有些情况下,须使用在页面中嵌入一个iframe来作局部刷新。 对于使用iframe的情况,发现有一个问题,就是iframe中的页面的高度可能会很高,但是外面页面并不会被iframe内部页面给撑开,如下面的结构: <div id="content"> <div id=&quo</div> </li> <li><a href="/article/3640.htm" title="用Rapael做图表" target="_blank">用Rapael做图表</a> <span class="text-muted">tntxia</span> <a class="tag" taget="_blank" href="/search/rap/1.htm">rap</a> <div>function drawReport(paper,attr,data){          var width = attr.width;     var height = attr.height;          var max = 0;   &nbs</div> </li> <li><a href="/article/3767.htm" title="HTML5 bootstrap2网页兼容(支持IE10以下)" target="_blank">HTML5 bootstrap2网页兼容(支持IE10以下)</a> <span class="text-muted">xiaoluode</span> <a class="tag" taget="_blank" href="/search/html5/1.htm">html5</a><a class="tag" taget="_blank" href="/search/bootstrap/1.htm">bootstrap</a> <div><!DOCTYPE html> <html> <head lang="zh-CN"> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"></div> </li> </ul> </div> </div> </div> <div> <div class="container"> <div class="indexes"> <strong>按字母分类:</strong> <a href="/tags/A/1.htm" target="_blank">A</a><a href="/tags/B/1.htm" target="_blank">B</a><a href="/tags/C/1.htm" target="_blank">C</a><a href="/tags/D/1.htm" target="_blank">D</a><a href="/tags/E/1.htm" target="_blank">E</a><a href="/tags/F/1.htm" target="_blank">F</a><a href="/tags/G/1.htm" target="_blank">G</a><a href="/tags/H/1.htm" target="_blank">H</a><a href="/tags/I/1.htm" target="_blank">I</a><a href="/tags/J/1.htm" target="_blank">J</a><a href="/tags/K/1.htm" target="_blank">K</a><a href="/tags/L/1.htm" target="_blank">L</a><a href="/tags/M/1.htm" target="_blank">M</a><a href="/tags/N/1.htm" target="_blank">N</a><a href="/tags/O/1.htm" target="_blank">O</a><a href="/tags/P/1.htm" target="_blank">P</a><a href="/tags/Q/1.htm" target="_blank">Q</a><a href="/tags/R/1.htm" target="_blank">R</a><a href="/tags/S/1.htm" target="_blank">S</a><a href="/tags/T/1.htm" target="_blank">T</a><a href="/tags/U/1.htm" target="_blank">U</a><a href="/tags/V/1.htm" target="_blank">V</a><a href="/tags/W/1.htm" target="_blank">W</a><a href="/tags/X/1.htm" target="_blank">X</a><a href="/tags/Y/1.htm" target="_blank">Y</a><a href="/tags/Z/1.htm" target="_blank">Z</a><a href="/tags/0/1.htm" target="_blank">其他</a> </div> </div> </div> <footer id="footer" class="mb30 mt30"> <div class="container"> <div class="footBglm"> <a target="_blank" href="/">首页</a> - <a target="_blank" href="/custom/about.htm">关于我们</a> - <a target="_blank" href="/search/Java/1.htm">站内搜索</a> - <a target="_blank" href="/sitemap.txt">Sitemap</a> - <a target="_blank" href="/custom/delete.htm">侵权投诉</a> </div> <div class="copyright">版权所有 IT知识库 CopyRight © 2000-2050 E-COM-NET.COM , All Rights Reserved. <!-- <a href="https://beian.miit.gov.cn/" rel="nofollow" target="_blank">京ICP备09083238号</a><br>--> </div> </div> </footer> <!-- 代码高亮 --> <script type="text/javascript" src="/static/syntaxhighlighter/scripts/shCore.js"></script> <script type="text/javascript" src="/static/syntaxhighlighter/scripts/shLegacy.js"></script> <script type="text/javascript" src="/static/syntaxhighlighter/scripts/shAutoloader.js"></script> <link type="text/css" rel="stylesheet" href="/static/syntaxhighlighter/styles/shCoreDefault.css"/> <script type="text/javascript" src="/static/syntaxhighlighter/src/my_start_1.js"></script> </body> </html>