티스토리 뷰
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
<!DOCTYPE> <html> <head> <title> getElementById Method </title> </head> <body> <p id="intro">Hello World!</p> <p>This example demonstrates the <b>getElementById</b> method!</p> <script> var x = document.getElementById("intro"); document.write("<p>the text from the intro paragraph : "+ x.innerHTML +"</p>"); </script> </body> </html> |
결과)
* source : http://www.w3schools.com/
'■ 프론트엔드 ■ > HTML' 카테고리의 다른 글
| innerHTML (0) | 2013.10.13 |
|---|---|
| document.getElementsByName() - name접근 (0) | 2013.10.13 |
| DOM - Methods and Properties (0) | 2013.10.13 |
| DOM이란? - Document Object Model (0) | 2013.10.13 |
| HTML DOM - Tree (0) | 2013.10.13 |
댓글