DOM का full meaning "Document Object Model " होता है। Dom एक प्रकार का HTML का part है ।
इसमें 3 word का use किया गया है।
Document :- किसी file को document कहा जाता है। इसलिए हम कह सकते हैं की HTML का file भी एक प्रकार का document ही है।
Object :- Html Dom में किसी भी html file के अंदर जितना भी tag जिसे हम element भी कहते हैं,उसे object कहते है।
Model :- Html के पूरे code को Model कहते हैं |
Dom tree का सबसे main part doctype होता है। जिसे route भी कहा जाता है।
किसी भी HTML document के अंदर दो tag होते हैं। 1 . <head> tag और 2 .<body> tag होते हैं।
दोनों tag के अंदर multiple child होते हैं :
head tag के अंदर <title> tag और <meta> tag होते हैं।
body tag अंदर custom type के multiple tag होते हैं
Ex. For
Note 1 :- HTML document में जितने भी tag के use होते हैं , उसे element भी कहा जाता है| लेकिन JavaScript में इसे (HTML element) को node कहा जाता है
Note 2 :- किसी भी HTML के element के साथ हम id और class का use कर सकते हैं।
किसी एक या एक से अधिक element को same name दिया जाता है। उस name को हम class कहते हैं।
Ex for:
<header id = “top_header” class= “teach”>
<div id = “first_div” class= “teach”>
<footer id = “first_footer” class= “teach”>
<nav id = “navivgation” class= “teach”>
<p class= “teach”>
sr.no | Syntex | Description |
---|---|---|
1 |
document.all |
इसका use सभी document को find करने के लिए किया जाता है |
2 |
document.head |
इसका use head को find करने के लिए किया जाता है |
3 |
document.title |
इसका use title को find करने के लिए किया जाता है |
4 |
document.body |
इसका use body को find करने के लिए किया जाता है |
5 |
document.links |
इसका use body के अंदर सभी link ya anchors find करने के लिए किया जाता है |
6 |
document.images |
इसका use images को find करने के लिए किया जाता है |
7 |
document.forms |
इसका use forms को find करने के लिए किया जाता है |
8 |
document.doctype |
इसका use doctype को find करने के लिए किया जाता है |
9 |
document.URL |
इसका use current page के URL को find करने के लिए किया जाता है |
10 |
document.domain |
इसका use domain को find करने के लिए किया जाता है |
11 |
document.baseURI |
इसका use base URI (current page के URL) को find करने के लिए किया जाता है |
12 |
document.getElementById ("id_name") |
इसका use element के id को find करने के लिए किया जाता है |
13 |
document. getElementsByClassName ("class_name") |
इसका use elements के class को find करने के लिए किया जाता है |
14 |
document. getElementsByTagName ("class_name") |
इसका use tags को find करने के लिए किया जाता है |