http://www.javascriptkit.com/domref/elementmethods.shtml
Properties | Description |
---|---|
addEventListener(eventType, listener, useCapture)
Not supported in IE, which uses attachEvent() instead. |
Associates a function with a particular event and binds the event to the current node. addEventListener() accepts the following 3 parameters:
1) EventType: A string representing the event to bind, without the " The advantage of using the DOM to bind an event is that you can assign multiple functions to a node for the same event (ie: Example(s): function statusreport(){ Since listener must be a function reference, a common question is how to specify the listener so it can receive parameters of its own. The solution is just to wrap the listener in an anonymous function reference: function dothis(what){ For events such as " function getcoord(evt){ |
attachEvent(eventType, function)
IE 5+only function |
The IE5+ proprietary equivalent of addEventListener() . Note that for the parameter eventType , the even string should include the "on" prefix (ie: "onload ", "onclick " etc).
Example(s): if (window.attachEvent) |
appendChild(node) | Inserts the specified node at the end of the current node object. A frequently used method for dynamically appending a new element or text to the document.
Example(s): <div id="test"></div> An interesting feature of <h1 id="myheader">Welcome to JavaScript Kit</h1> |
blur() | Removes keyboard focus from the current element. Used for example to fire the onBlur event handler of an element via scripting. |
click() | Executes a click on a element as if the user manually clicked on it. In most browsers, click() only works on form INPUT elements that's non "submit" or "reset". It can't be used to simulate a click on a link or form submit button. |
cloneNode(deepBoolean) | Duplicates and returns a copy of the current node as a standalone node (not part of document tree). Cloning a node copies both the original's attributes and values, including the ID attribute, so be sure to alter the cloned ID attribute's value so it's unique before introducing it to the document tree. This method supports a single Boolean parameter, "deepBoolean" that when set to true, clones all the sub nodes of the current node as well, such as any text contained within.
Example(s): p=document.getElementById("mypara") |
detachEvent(eventType, function)
IE 5+only function |
Removes an event handler and its function previously associated with a node in IE5+, via attachEvent() for example. The IE5+ proprietary equivalent of DOM2's removeEventListener() .
Example(s): if (window.detachEvent) |
dispatchEvent(eventObject)
Not supported in IE, which uses fireEvent() instead. |
Dispatches an event to fire on a node artificially. This method returns a Boolean indicating whether any of the listeners which handled the event called preventDefault (false if called, otherwise, true). IE's equivalent of dispatchEvent() is fireEvent() .
Example(s): <div id="test" onclick="alert('hi')">Sample DIV.</div> |
focus() | Sets focus on the current node. |
getAttribute(attributeName) | Returns the value of the attribute named attribute of the current node.
Example(s): document.getElementById("test").getAttribute("align") |
getAttributeNS(namespace, localname) | Returns the value of the attribute with the given local name and namespace. Applicable in XML documents. |
getAttributeNode(attributename) | Returns/references the attribute of the current element as a stand only node (not part of document tree).
Example(s): var attributeobj=document.getElementById("nav").getAttributeNode("align") |
getAttributeNodeNS(namespace, localname) | Returns/references the attribute of the current element with the given local name and namespace. Applicable in XML documents. |
getElementsByClassName
Note: Supported in FF3+, Opera 9.5+, Safari 3+, though not IE8. |
Gets a collection of element(s) within the invoking element that shares the designated CSS class name, for example:
//get elements within element "house" that has a CSS class of "cats" You can get elements with different CSS class names within an element all in one scoop, by separating each class with a space: //get elements within element "house" that has a CSS class of "cats" or "dogs" Note that |
getElementsByTagName(tagName) | Returns as an array all the child elements of the current element matching the "tagName" parameter (ie: "li"). In Firefox/ IE6+, you may enter an asterisk ("*") for the method's parameter to retrieve a list of all elements within the current.
Example(s): var mylist=document.getElementById("navlist") var alltags=document.getElementsByTagName("*") //returns all elements on page |
getElementsByTagNameNS(namespace, localname) | Returns as an array all the child elements of the current element with the given local name and namespace. Applicable in XML documents. |
hasAttribute(attributename) | Returns a Boolean value indicating whether the current element contains an attribute (ie: "align").
Example(s): if (document.getElementById("mytable").hasAttribute("style")) |
hasAttributeNS(namespace, localname) | Returns a Boolean value indicating whether the current element contains an attribute with the given local name and namespace. Applicable in XML documents. |
hasAtrributes() | Returns a Boolean value indicating whether the current element has any explicit attributes defined. |
hasChildNodes() | Returns a Boolean value indicating whether the current element contains any child nodes. |
insertBefore(newElement, targetElement) | Inserts a new node "newElement" as a child node of the current node. The "targetElement" property dictates where "newElement" is inserted within the list of child nodes. If set to null, the new element is inserted as the last child node; otherwise, it's inserted right before "targetElement".
Example(s): <div id="employees"> Important: Like many DOM methods that change the structure of the document, insertBefore() can only be called after the page has fully loaded. Doing so before will return strange errors in most browsers! |
insertAfter(newElement, targetElement) | As of DOM Level 2 there does NOT exist an insertAfter() method. However, it can be easily simulated using insertBefore() above. For the "targetElement" parameter, just use "targetElement.nextSibling" instead.
<div id="employees">
|
item(index) | Retrieves a node based on its index within the document tree. IE4+ and FireFox1+.
Example(s): <div id="div1"></div> |
normalize() | Normalizes the current node and its sub tree. See here for more info. |
querySelector(selectors, [NSResolver])
Note: Currently supported in FF3.1+, IE8+ (only in IE8 standards mode), and Safari 3.1+ |
Accepts a CSS selector(s) and returns the first matching element (based on the document tree) within the invoking element, or null .
Example: <ul id="mylist"> You can enter multiple CSS selectors each separated by a comma (,), in which case the first matching element of any of the CSS selectors entered will be returned: //returns either element "#leftcolumn" or "#rightcolumn", depending on which one is found first: querySelector() supports an optional 2nd " |
querySelectorAll(selectors, [NSResolver])
Note: Currently supported in FF3.1+, IE8+ (only in IE8 standards mode), and Safari 3.1+ |
Accepts a CSS selector(s) and returns all matching elements (based on the document tree) within the invoking element as a staticNodeList , or null . A staticNodeList is a static collection of elements that are not affected by any subsequent changes occuring on the document tree.
Example: <ul id="mylist"> You can enter multiple CSS selectors each separated by a comma (,), in which case all matching elements found using the entered CSS selectors will be returned: //returns both elements "#leftcolumn" or "#rightcolumn", or one of them if only one defined:
See "Overview of CSS3 Structural puesdo-classes" for advanced CSS selectors you can use with the query selector methods. |
removeAttribute(attributename) | Removes an attribute by its name.
Example(s): document.getElementById("test").removeAttribute("href") |
removeAttributeNode(attributereference) | Remove an attribute by passing in as parameter a reference to the attribute object to remove. It offers an alternate way to removeAttribrute()"for removing attributes, when all you have is a reference to the attribute object in your script.
Example(s): var hrefattr=document.getElementById("test").getAttributeNode("href") |
removeAttributeNS(namespace, localname) | Removes an attribute with the specified namespace and localname. |
removeChild(childreference) | Removes the child node of the current node. The removed node can then be reinserted elsewhere in the document tree.
Example(s): <div id="father"><div id="child">A child</div></div> |
removeEventListener(eventType, listener, useCapture)
Not supported in IE, which uses detachEvent() instead. |
Removes the specified event from being binded to the current node:
1) EventType: A string representing the event to unbind, without the "on" prefix. For example, "click", "mousedown" etc. NS6/Firefox method. |
replaceChild(newChild, oldChild) | Replaces one child node of the current node with another child node.
Example(s): <div id="adiv"><span id="innerspan"></span></div> |
scrollIntoView([Boolean]) | Firefox/IE4+ proprietary method that scrolls an element into view. It accepts an optional Boolean parameter that when set to true (default), scrolls the element so its top left corner touches the top of the viewable window. If false, the element's bottom left corner touches the bottom of the window. |
setAttribute(attributename, value, [iecaseflag]) | Sets an attribute's value for the current element. If the attribute doesn't exit yet, it creates the attribute first. Otherwise, the existing attribute is modified with the new value. In IE, the following two pitfalls exist:
Example(s): document.getElementById("test").setAttribute("title", "JavaScript Kit") |
setAttributeNS(namespace, qualifiedname, value) | Sets or creates an attribute for the current node with the given local name and namespace. Applicable in XML documents. |
setAttributeNode(attributereference) | Sets or creates an attribute for the current node. "attributereference" should be a reference to a attribute you wish to insert. If an attribute of the same name (as referenced) already exists on the node, it is replaced with the newly inserted one.
Example(s): <div id="brother" style="border:1px solid black; padding: 2px">Brother</div> |
supports(feature, [version]) | Tests to see if this DOM implementation supports a particular feature. |
'scribbling' 카테고리의 다른 글
해외 논문 보기 (공짜로) (0) | 2010.10.07 |
---|---|
Provisioning (0) | 2010.09.17 |
Graph Database and products 소개. (0) | 2010.08.31 |
Wired-The web is dead. (0) | 2010.08.24 |
Skype Architect의 Learnings from Five Years as a Skype Architect (0) | 2010.08.19 |