際際滷

際際滷Share a Scribd company logo
HFJS  Book
Review Ch8
Brady Cheng
Agenda
 GetHTML Element
 Update the HTML Element
 DOM(Document Object Model)
Get HTML element
 getElementByID
 getElementByTagName
<body>
       <img id=img1 src=/slideshow/javascript-ch8/15221337/img1.png alt=first image/>
       <img id=img2 src=img2.png alt=second image/>
       <img id=img3 src=img3.png alt=third image/>
</body>


         document.getElementById(img1);
         document.getElementByTagName(img)[0];
Update the HTML Element
     Use   innerHTML property to update
<head>
<script type="text/javascript">
  function updateText()
  {
      document.getElementById("text").innerHTML = "Hello, JS world!";
  }
</script>
</head>
<body>
    <p id="text" onclick="updateText();"> Hello, world!</p>
</body>
               Output: Hello, world! -> Hello, JS world!
DOM
     DOM(document   object model) is a
      concept to organize our html as a tree-
      like structure
                                       document

                                            html
<head> </head>
<body>                               head          body
   <p id="text"> Hello, world!</p>
</body>                                             p


                                               Hello, world!
DOM
 Every block is a node
 Upper node is the parent of lower node
 Two types of node            document
    Element
                                    html
    Text
       Parent of head/body   head          body


          Child of html                     p


                                       Hello, world!
DOM
 Some    properties to describe nodes
    nodeValue
    nodeType
                  document
    childNode
                    html
    fisrtChild
    lastChild head        body


                             p
      Id=textId         Hello, world
                              !
alert(document.getElementById("textId").firstChild.nodeValue);
DOM
 Some   functions to operate nodes
    removeChild();
    createTextNode();
    appendChild();


 We use DOM to implement the
 aforementioned updateText() function
DOM
 Use   innerHTML
document.getElementById("text").innerHTML = "Hello, JS world!";

 Use   DOM
while(node.firstChild)
        node.removeChild(node.firstChild);

var new_node = document.createTextNode("Hello, JS world!");
node.appendChild(new_node);



         Output: Hello, world! -> Hello, JS world!

More Related Content

What's hot (18)

Meetup#1: 10 reasons to fall in love with MongoDB
Meetup#1: 10 reasons to fall in love with MongoDBMeetup#1: 10 reasons to fall in love with MongoDB
Meetup#1: 10 reasons to fall in love with MongoDB
Minsk MongoDB User Group
Website slides
Website slidesWebsite slides
Website slides
Comm3
Mongophilly shell-2011-04-26
Mongophilly shell-2011-04-26Mongophilly shell-2011-04-26
Mongophilly shell-2011-04-26
kreuter
Mastering the MongoDB Shell
Mastering the MongoDB ShellMastering the MongoDB Shell
Mastering the MongoDB Shell
MongoDB
Internet and Web Technology (CLASS-7) [XML and AJAX] | NIC/NIELIT Web Technology
Internet and Web Technology (CLASS-7) [XML and AJAX] | NIC/NIELIT Web TechnologyInternet and Web Technology (CLASS-7) [XML and AJAX] | NIC/NIELIT Web Technology
Internet and Web Technology (CLASS-7) [XML and AJAX] | NIC/NIELIT Web Technology
Ayes Chinmay
Our local state, my, my - Understanding Perl variables
Our local state, my, my - Understanding Perl variablesOur local state, my, my - Understanding Perl variables
Our local state, my, my - Understanding Perl variables
xSawyer
Mysql to mongo
Mysql to mongoMysql to mongo
Mysql to mongo
Alex Sharp
Building Your First MongoDB App ~ Metadata Catalog
Building Your First MongoDB App ~ Metadata CatalogBuilding Your First MongoDB App ~ Metadata Catalog
Building Your First MongoDB App ~ Metadata Catalog
hungarianhc
33 meta
33 meta33 meta
33 meta
SatyakiDas12
MongoDB a document store that won't let you down.
MongoDB a document store that won't let you down.MongoDB a document store that won't let you down.
MongoDB a document store that won't let you down.
Nurul Ferdous
[WEB UI BASIC] JavaScript 1
[WEB UI BASIC] JavaScript 1[WEB UI BASIC] JavaScript 1
[WEB UI BASIC] JavaScript 1
Jae Woo Woo
Javascript and DOM
Javascript and DOMJavascript and DOM
Javascript and DOM
Brian Moschel
Building a Location-based platform with MongoDB from Zero.
Building a Location-based platform with MongoDB from Zero.Building a Location-based platform with MongoDB from Zero.
Building a Location-based platform with MongoDB from Zero.
Ravi Teja
Zoho vs google doc[1]
Zoho vs google doc[1]Zoho vs google doc[1]
Zoho vs google doc[1]
ecol9445
Lesson 206 11 oct13-1500-ay
Lesson 206 11 oct13-1500-ayLesson 206 11 oct13-1500-ay
Lesson 206 11 oct13-1500-ay
Codecademy Ren
PhpstudyTokyo MongoDB PHP CakePHP
PhpstudyTokyo MongoDB PHP CakePHPPhpstudyTokyo MongoDB PHP CakePHP
PhpstudyTokyo MongoDB PHP CakePHP
ichikaway
Couch db skillsmatter-prognosql
Couch db skillsmatter-prognosqlCouch db skillsmatter-prognosql
Couch db skillsmatter-prognosql
Skills Matter Talks
Mongo Presentation by Metatagg Solutions
Mongo Presentation by Metatagg SolutionsMongo Presentation by Metatagg Solutions
Mongo Presentation by Metatagg Solutions
Metatagg Solutions
Meetup#1: 10 reasons to fall in love with MongoDB
Meetup#1: 10 reasons to fall in love with MongoDBMeetup#1: 10 reasons to fall in love with MongoDB
Meetup#1: 10 reasons to fall in love with MongoDB
Minsk MongoDB User Group
Website slides
Website slidesWebsite slides
Website slides
Comm3
Mongophilly shell-2011-04-26
Mongophilly shell-2011-04-26Mongophilly shell-2011-04-26
Mongophilly shell-2011-04-26
kreuter
Mastering the MongoDB Shell
Mastering the MongoDB ShellMastering the MongoDB Shell
Mastering the MongoDB Shell
MongoDB
Internet and Web Technology (CLASS-7) [XML and AJAX] | NIC/NIELIT Web Technology
Internet and Web Technology (CLASS-7) [XML and AJAX] | NIC/NIELIT Web TechnologyInternet and Web Technology (CLASS-7) [XML and AJAX] | NIC/NIELIT Web Technology
Internet and Web Technology (CLASS-7) [XML and AJAX] | NIC/NIELIT Web Technology
Ayes Chinmay
Our local state, my, my - Understanding Perl variables
Our local state, my, my - Understanding Perl variablesOur local state, my, my - Understanding Perl variables
Our local state, my, my - Understanding Perl variables
xSawyer
Mysql to mongo
Mysql to mongoMysql to mongo
Mysql to mongo
Alex Sharp
Building Your First MongoDB App ~ Metadata Catalog
Building Your First MongoDB App ~ Metadata CatalogBuilding Your First MongoDB App ~ Metadata Catalog
Building Your First MongoDB App ~ Metadata Catalog
hungarianhc
MongoDB a document store that won't let you down.
MongoDB a document store that won't let you down.MongoDB a document store that won't let you down.
MongoDB a document store that won't let you down.
Nurul Ferdous
[WEB UI BASIC] JavaScript 1
[WEB UI BASIC] JavaScript 1[WEB UI BASIC] JavaScript 1
[WEB UI BASIC] JavaScript 1
Jae Woo Woo
Javascript and DOM
Javascript and DOMJavascript and DOM
Javascript and DOM
Brian Moschel
Building a Location-based platform with MongoDB from Zero.
Building a Location-based platform with MongoDB from Zero.Building a Location-based platform with MongoDB from Zero.
Building a Location-based platform with MongoDB from Zero.
Ravi Teja
Zoho vs google doc[1]
Zoho vs google doc[1]Zoho vs google doc[1]
Zoho vs google doc[1]
ecol9445
Lesson 206 11 oct13-1500-ay
Lesson 206 11 oct13-1500-ayLesson 206 11 oct13-1500-ay
Lesson 206 11 oct13-1500-ay
Codecademy Ren
PhpstudyTokyo MongoDB PHP CakePHP
PhpstudyTokyo MongoDB PHP CakePHPPhpstudyTokyo MongoDB PHP CakePHP
PhpstudyTokyo MongoDB PHP CakePHP
ichikaway
Couch db skillsmatter-prognosql
Couch db skillsmatter-prognosqlCouch db skillsmatter-prognosql
Couch db skillsmatter-prognosql
Skills Matter Talks
Mongo Presentation by Metatagg Solutions
Mongo Presentation by Metatagg SolutionsMongo Presentation by Metatagg Solutions
Mongo Presentation by Metatagg Solutions
Metatagg Solutions

Viewers also liked (9)

Javascript ch2
Javascript ch2Javascript ch2
Javascript ch2
Brady Cheng
RoR guide_p1
RoR guide_p1RoR guide_p1
RoR guide_p1
Brady Cheng
Javascipt ch4 & ch5
Javascipt ch4 & ch5Javascipt ch4 & ch5
Javascipt ch4 & ch5
Brady Cheng
Javascript ch3
Javascript ch3Javascript ch3
Javascript ch3
Brady Cheng
Javascipt ch1
Javascipt ch1Javascipt ch1
Javascipt ch1
Brady Cheng
Ruby introduction part1
Ruby introduction part1Ruby introduction part1
Ruby introduction part1
Brady Cheng
Javascript ch6
Javascript ch6Javascript ch6
Javascript ch6
Brady Cheng
Javascript ch7
Javascript ch7Javascript ch7
Javascript ch7
Brady Cheng
design pattern overview
design pattern overviewdesign pattern overview
design pattern overview
Brady Cheng
Javascript ch2
Javascript ch2Javascript ch2
Javascript ch2
Brady Cheng
Javascipt ch4 & ch5
Javascipt ch4 & ch5Javascipt ch4 & ch5
Javascipt ch4 & ch5
Brady Cheng
Javascript ch3
Javascript ch3Javascript ch3
Javascript ch3
Brady Cheng
Javascipt ch1
Javascipt ch1Javascipt ch1
Javascipt ch1
Brady Cheng
Ruby introduction part1
Ruby introduction part1Ruby introduction part1
Ruby introduction part1
Brady Cheng
Javascript ch6
Javascript ch6Javascript ch6
Javascript ch6
Brady Cheng
Javascript ch7
Javascript ch7Javascript ch7
Javascript ch7
Brady Cheng
design pattern overview
design pattern overviewdesign pattern overview
design pattern overview
Brady Cheng

Similar to Javascript ch8 (20)

HelloWorld
HelloWorldHelloWorld
HelloWorld
llynn83wou
Web 6 | JavaScript DOM
Web 6 | JavaScript DOMWeb 6 | JavaScript DOM
Web 6 | JavaScript DOM
Mohammad Imam Hossain
Java Script and HTML.
Java Script and HTML.Java Script and HTML.
Java Script and HTML.
Akshat Vig
I have these files in picture I wrote most the codes but I stuck wit.pdf
I have these files in picture I wrote most the codes but I stuck wit.pdfI have these files in picture I wrote most the codes but I stuck wit.pdf
I have these files in picture I wrote most the codes but I stuck wit.pdf
mail931892
JavaScript DOM & event
JavaScript DOM & eventJavaScript DOM & event
JavaScript DOM & event
Borey Lim
DOM Quick Overview
DOM Quick OverviewDOM Quick Overview
DOM Quick Overview
Signure Technologies
6867389.ppt
6867389.ppt6867389.ppt
6867389.ppt
SunilChaluvaiah
6867389.ppt
6867389.ppt6867389.ppt
6867389.ppt
SunilChaluvaiah
6867389 (1).ppt
6867389 (1).ppt6867389 (1).ppt
6867389 (1).ppt
SunilChaluvaiah
DOM and Events
DOM and EventsDOM and Events
DOM and Events
Julie Iskander
JavaScript and DOM
JavaScript and DOMJavaScript and DOM
JavaScript and DOM
Jussi Pohjolainen
Hello world
Hello worldHello world
Hello world
llynn83wou
Basic JS
Basic JSBasic JS
Basic JS
alexisabril
Dom
Dom Dom
Dom
Surinder Kaur
JavaScript: Ajax & DOM Manipulation
JavaScript: Ajax & DOM ManipulationJavaScript: Ajax & DOM Manipulation
JavaScript: Ajax & DOM Manipulation
borkweb
Javascript dom event
Javascript dom eventJavascript dom event
Javascript dom event
Bunlong Van
Document Object Model
Document Object ModelDocument Object Model
Document Object Model
baabtra.com - No. 1 supplier of quality freshers
lect9
lect9lect9
lect9
tutorialsruby
lect9
lect9lect9
lect9
tutorialsruby
Javascript jQuery jQuery Ui
Javascript jQuery jQuery UiJavascript jQuery jQuery Ui
Javascript jQuery jQuery Ui
Tom Friedhof

Javascript ch8

  • 1. HFJS Book Review Ch8 Brady Cheng
  • 2. Agenda GetHTML Element Update the HTML Element DOM(Document Object Model)
  • 3. Get HTML element getElementByID getElementByTagName <body> <img id=img1 src=/slideshow/javascript-ch8/15221337/img1.png alt=first image/> <img id=img2 src=img2.png alt=second image/> <img id=img3 src=img3.png alt=third image/> </body> document.getElementById(img1); document.getElementByTagName(img)[0];
  • 4. Update the HTML Element Use innerHTML property to update <head> <script type="text/javascript"> function updateText() { document.getElementById("text").innerHTML = "Hello, JS world!"; } </script> </head> <body> <p id="text" onclick="updateText();"> Hello, world!</p> </body> Output: Hello, world! -> Hello, JS world!
  • 5. DOM DOM(document object model) is a concept to organize our html as a tree- like structure document html <head> </head> <body> head body <p id="text"> Hello, world!</p> </body> p Hello, world!
  • 6. DOM Every block is a node Upper node is the parent of lower node Two types of node document Element html Text Parent of head/body head body Child of html p Hello, world!
  • 7. DOM Some properties to describe nodes nodeValue nodeType document childNode html fisrtChild lastChild head body p Id=textId Hello, world ! alert(document.getElementById("textId").firstChild.nodeValue);
  • 8. DOM Some functions to operate nodes removeChild(); createTextNode(); appendChild(); We use DOM to implement the aforementioned updateText() function
  • 9. DOM Use innerHTML document.getElementById("text").innerHTML = "Hello, JS world!"; Use DOM while(node.firstChild) node.removeChild(node.firstChild); var new_node = document.createTextNode("Hello, JS world!"); node.appendChild(new_node); Output: Hello, world! -> Hello, JS world!