当前位置: 首页 > 网络学院 > 客户端脚本教程 > JavaScript > JS HTML DOM

JavaScript
JS 字符串
JS Date
JS数组,JS Array
JS Boolean
JS Math
JS HTML DOM
JS Browser
JS Cookies
JS 校验
JS Animation
JS Image Maps
JS Timing
JS 建立对象
JS 摘要
JS 实例
JS 对象实例
JS DOM 实例
JS数组对象参考
JS布尔对象参考
JS日期对象参考

JavaScript 中的 JS HTML DOM


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-01   浏览: 826 ::
收藏到网摘: n/a

In addition to the built-in JavaScript objects, you can also access and manipulate all of the HTML DOM objects with JavaScript.
除了JS内置的对象外,你还可以通过JS来访问和操作所有的HTML DOM对象。


The HTML DOM

The HTML DOM is a W3C standard and it is an abbreviation for the Document Object Model for HTML.
HTML DOM是W3C的一个标准 ,它是HTML文档对象模型(Document Object Model)的简称

The HTML DOM defines a standard set of objects for HTML, and a standard way to access and manipulate HTML documents.
HTML DOM定义了一套标准的HTML对象,并且用标准的方法来访问和操作HTML文档

All HTML elements, along with their containing text and attributes, can be accessed through the DOM. The contents can be modified or deleted, and new elements can be created.
使用DOM可以访问HTML所有的元素以及其内的文字和属性。内容可以修改和删除,并且能建立新的元素。

The HTML DOM is platform and language independent. It can be used by any programming language like Java, JavaScript, and VBScript.
HTML DOM是一个独立的平台和语言。可以使用任何程序语言,像JAVA,JS,VBS

Follow the links below to learn more about how to access and manipulate each DOM object with JavaScript:
跟随下面的连接来学习更多有关使用JS访问并操作每个DOM对象
------以下的内容就是DOM教程--------

对象 描述
Anchor Represents an HTML a element (a hyperlink)
代表了HTML的 a 元素 (超级链接)
Applet Represents an HTML applet element. The applet element is used to place executable content on a page
代表了HTML的applet元素,applet元素可用来放置页面内可执行的内容
Area Represents an area of an image-map. An image-map is an image with clickable regions
代表了图象映射区域。带有可点击的图片可称为图象映射
Base Represents an HTML base element
代表了HTML的 base元素
Basefont Represents an HTML basefont element
HTML的basefont元素
Body Represents the body of the document (the HTML body)
文档的主体(body)
Button Represents a push button on an HTML form. For each instance of an HTML <input type="button"> tag on an HTML form, a Button object is created
HTML表单上的按钮。HTML表单中只要出现了<input type="button">标签,一个Button对象就建立了
Checkbox Represents a checkbox on an HTML form. For each instance of an HTML <input type="checkbox"> tag on an HTML form, a Checkbox object is created
HTML表单中的复选框。只要HTML表单中出现了<input type="checkbox">标签,就会建立起Checkbox对象
Document Used to access all elements in a page
可用来访问所有在页面中的元素
Event Represents the state of an event, such as the element in which the event occurred, the state of the keyboard keys, the location of the mouse, and the state of the mouse buttons
代表事件的状态,比如某个元素的事件发生了,键盘按键的状态,鼠标的位置,鼠标按钮的状态
FileUpload For each instance of an HTML <input type="file"> tag on a form, a FileUpload object is created
当HTML表单中有<input type="file">,FileUpload对象就建立起来了
Form Forms are used to prompt users for input. Represents an HTML form element
表单可用于用户信息的输入递交。可代表HTML中的form元素
Frame Represents an HTML frame
代表了HTML中的框架
Frameset Represents an HTML frameset
HTML的框架集
Hidden Represents a hidden field on an HTML form. For each instance of an HTML <input type="hidden"> tag on a form, a Hidden object is created
在HTML中的隐藏区域。每当HTML表单中出现<input type="hidden">标签,Hidden对象就建立起来了
History A predefined object which can be accessed through the history property of the Window object. This object consists of an array of URLs. These URLs are all the URLs the user has visited within a browser window
通过Window对象的history属性所访问的预先确定对象。这个对象由一组URLs所构成。这些URLs是所有用户曾经在浏览器中访问过的URLs。
Iframe Represents an HTML inline-frame
HTML中的内联框架
Image Represents an HTML img element
HTML的img元素
Link Represents an HTML link element. The link element can only be used within the <head> tag
HTML的link元素。只能在<head>标签里使用link元素
Location Contains information about the current URL
含有当前URL的信息
Meta Represents an HTML meta element
HTML的meta元素
Navigator Contains information about the client browser
含有客户端信息
Option Represents an option in a selection list on an HTML form. For each instance of an HTML <option> tag in a selection list on a form, an Option object is created
在HTML表单中的选择项。每当HTML表单中出现<option>标签,Option对象就建立了
Password Represents a password field on an HTML form. For each instance of an HTML <input type="password"> tag on a form, a Password object is created
代表一个HTML标单中的密码输入框。它将为表单中的每个HTML <input type="password">标签实例创建一个密码对象
Radio Represents radio buttons on an HTML form. For each instance of an HTML <input type="radio"> tag on a form, a Radio object is created
代表HTML表单中的radio按钮。它将为表单中的每个HTML <input type="radio">标签实例创建一个Radio对象
Reset Represents a reset button on an HTML form. For each instance of an HTML <input type="reset"> tag on a form, a Reset object is created
代表HTML表单中的reset[重置]按钮。它将为表单中的每个HTML <input type="reset">标签实例创建一个reset对象
Screen Automatically created by the JavaScript runtime engine and it contains information about the client's display screen
通常由JavaScript 执行引擎自动创建,它包含了客户的显示屏信息
Select Represents a selection list on an HTML form. For each instance of an HTML <select> tag on a form, a Select object is created
代表HTML表单中的selection[选择]按钮。它将为表单中的每个HTML <select>标签实例创建一个select对象
Style Represents an individual style statement. This object can be accessed from the document or from the elements to which that style is applied
代表了一个单独样式语句。该对象可以通过文档或通过某个样式所应用的元素对象来访问
Submit Represents a submit button on an HTML form. For each instance of an HTML <input type="submit"> tag on a form, a Submit object is created
代表HTML表单中的submit[提交]按钮。它将为表单中的每个HTML <input type="submit">标签实例创建一个submit[提交]对象
Table Represents an HTML table element
代表了一个HTML表单元素
TableData Represents an HTML td element
代表了一个HTML td 元素
TableHeader Represents an HTML th element
代表了一个HTML th元素
TableRow Represents an HTML tr element
代表了一个 HTML tr元素
Text Represents a text field on an HTML form. For each instance of an HTML <input type="text"> tag on a form, a Text object is created
代表HTML表单中的文本输入框。它将为表单中的每个HTML <input type="text">标签实例创建一个文本输入对象
Textarea Represents an HTML textarea element
代表了一个HTML textarea[文本输入域]元素
Window Corresponds to the browser window. A Window object is created automatically with every instance of a <body> or <frameset> tag
代表浏览器窗口。Window对象将通过<body>或<frameset>标签自动创建。

 

评论 (0) All

登陆 | 还没注册?