- 1、本文档共11页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
DOM对象常用方法(国外英语资料)
DOM对象常用方法(国外英语资料)
Common methods for Dom objects:
(1) getElementById () queries the element of the given ID attribute value and returns the element node of that element
The element that queries a given ID attribute value returns the element node of that element. Also known as element objects.
Because the value of the id in an HTML page is unique, the return value is also unique. So the name of the method is getElementById () instead of getElementsById ().
This method can only be used for document objects, similar to the static keyword of Java.
(2) getElementsByName () looks up all the elements of a given name attribute, which returns a collection of nodes or objects
Looking for all the elements of a given name attribute, this method returns a collection of nodes, or a collection of objects.
The set can be treated as an array, and the value of the length attribute represents the number of collections.
Because in the HTML page, the name is not the only one that identifies an element, so the name of the method is getElementsByName instead of getElementByName
(3) getElementsByTagName () queries all elements of a given tag name
Query all elements of a given tag name
Because the tag name is not unique in the HTML page, the return value is a collection of nodes.
This collection can be treated as an array, and the length attribute is the number of elements in the collection
There are two ways to do this:
1, var elements = document.getelementsbytagname (tagName);
2, var elements = element. GetElementsByTagName (tagName);
From these two methods, you can see that the object that holds this method is not necessarily the entire document object (document). It can also be an element node.
(4) hasChildNodes () is used to determine whether an element has a child node and returns a value of true or false
The method is used to determine whether an element has child nodes
The return value is true or false
The text node and the attribute node cant contain the child nodes, so the return
文档评论(0)