91-9990449935 0120-4256464 |
Document Object ModelThe document object represents the whole html document. When html document is loaded in the browser, it becomes a document object. It is the root element that represents the html document. As mentioned earlier, it is the object of window. So
window.document
Is same as
document
According to W3C - "The W3C Document Object Model (DOM) is a platform and language-neutral interface that allows programs and scripts to dynamically access and update the content, structure, and style of a document." Properties of document objectLet's see the properties of document object that can be accessed and modified by the document object. Methods of document objectWe can access and change the contents of document by its methods. The important methods of document object are as follows:
Accessing the field value by document objectIn this example, we are going to get the value of input text by user. Here, we are using document.form1.name.value to get the value of name field. Here, document is the root element that represents the html document. form1 is the name of the form. name is the attribute name of the input text. value is the property, that returns the value of the input text. Let's see the simple example of document object that prints name with welcome message. Output of the above example
Next TopicDocument getElementById() Method
|