Presentation is loading. Please wait.

Presentation is loading. Please wait.

1 JavaScript: Event Model November 1, 2005 Slides modified from Internet & World Wide Web: How to Program. 2004 (3rd) edition. By Deitel, Deitel, and Goldberg.

Similar presentations


Presentation on theme: "1 JavaScript: Event Model November 1, 2005 Slides modified from Internet & World Wide Web: How to Program. 2004 (3rd) edition. By Deitel, Deitel, and Goldberg."— Presentation transcript:

1 1 JavaScript: Event Model November 1, 2005 Slides modified from Internet & World Wide Web: How to Program. 2004 (3rd) edition. By Deitel, Deitel, and Goldberg. Published by Prentice Hall. ISBN 0-13-145091-3

2 2 Chapter 14 – Dynamic HTML: Event Model Outline 14.1 Introduction 14.2 Event onclick 14.3 Event onload 14.4 Error Handling with onerror 14.5 Tracking the Mouse with Event onmousemove 14.6 Rollovers with onmouseover and onmouseout 14.7 Form Processing with onfocus and onblur 14.8 More Form Processing with onsubmit and onreset 14.9 Event Bubbling 14.10 More DHTML Events 14.11Web Resources

3 3 Objectives In this lesson, you will learn: –To understand the notion of events, event handlers and event bubbling. –To be able to create event handlers that respond to mouse and keyboard events. –To be able to use the event object to be made aware of and, ultimately, respond to user actions. –To understand how to recognize and respond to the most popular events.

4 4 14.1 Introduction Event model –Scripts can respond to user –Content becomes more dynamic –Interfaces become more intuitive

5 5 Three different event models: Internet Explorer –http://msdn.microsoft.com/workshop/author/om/event_model.asphttp://msdn.microsoft.com/workshop/author/om/event_model.asp Gecko (Firefox, Netscape, Mozilla) –http://mozref.com/reference/specifications/DOM2Eventshttp://mozref.com/reference/specifications/DOM2Events W3C –http://www.w3.org/TR/DOM-Level-2-Events/events.htmlhttp://www.w3.org/TR/DOM-Level-2-Events/events.html Reconciliations –http://www.oreillynet.com/pub/a/javascript/synd/2001/09/25/even t_models.html?page=2http://www.oreillynet.com/pub/a/javascript/synd/2001/09/25/even t_models.html?page=2 –http://www.javascriptkit.com/dhtmltutors/domevent1.shtmlhttp://www.javascriptkit.com/dhtmltutors/domevent1.shtml –Event object: http://www.javascriptkit.com/jsref/event.shtmlhttp://www.javascriptkit.com/jsref/event.shtml

6 6 14.2 Event onclick onClick –Invoked when user clicks the mouse on a specific item

7 7 onclick.html (1 of 2)

8 8 14.3 Event onload onload event –Fires when an element finishes loading –Used in the body element –Initiates a script after the page loads into the client

9 9 onload.html (1 of 2)

10 10 14.4 Error Handling with onerror onerror event –Execute specialized error-handling code

11 11 onerror.html (2 of 2)

12 12 14.5 Tracking the Mouse with Event onmousemove onmousemove –Fires repeatedly when the user moves the mouse over the Web page –Gives position of the mouse

13 13 onmousemove.html (2 of 2)

14 14 14.6 Rollovers with onmouseover and onmouseout Two more events fired by mouse movements –onmouseover Mouse cursor moves over element –Onmouseout Mouse cursor leaves element

15 15

16 16

17 17 14.7 Form Processing with onfocus and onblur onfocus event fires when element gains focus onblur event fires when element loses focus

18 18 onfocusblur.html (2 of 3)

19 19 14.8 More Form Processing with onsubmit and onreset onsubmit and onreset are useful events for processing forms

20 20 onsubmitreset.html (1 of 4)

21 21 onsubmitreset.html (2 of 4)

22 22 onsubmitreset.html (3 of 4)

23 23 14.9 Event Bubbling Crucial part of the event model Process whereby events fired in child elements “bubble” up to their parent elements

24 24 bubbling.html (2 of 2)

25 25

26 26 14.10 More DHTML Events Remaining DHTML events and their descriptions http://www.w3schools.com/jsref/jsref_events.asp


Download ppt "1 JavaScript: Event Model November 1, 2005 Slides modified from Internet & World Wide Web: How to Program. 2004 (3rd) edition. By Deitel, Deitel, and Goldberg."

Similar presentations


Ads by Google