2.3.5. The Event Model
The
IE event model, which works hand-in-hand with the object model, is
the critical bridge between user action and scripted activity.
Virtually every element object has event handlers that can be
scripted to respond to user and system actions. For example, it is
possible to associate different actions with user clicks over
different headings (even if the text blocks don't
look like links) by assigning a different script statement to each
heading's onclick event handler.
IE for Windows, especially starting with IE 5, defines a large number
of new events that can trigger scripts (as described in Chapter 10). Many of these events are patterned after the
kinds of events application programmers use for manipulating
Windows-based data and user interface behaviors. As a result, many of
these events are available only in Windows versions of IE.
Another part of the event model is an
event object. This abstract and short-lived
entity—accessed as a property of the window
object, and thus available to any function processing the
event—contains details about each event that occurs. Scripts
operating in response to events can inspect properties of the
event object to determine the element responding
to the event, the event's location, keyboard key,
and so on.
The last
aspect of the event model you need to understand is event
propagation. Since IE 4, an event, unless otherwise instructed by
script, continues to "bubble up"
through the HTML element containment hierarchy of the document.
Consider the following simple HTML document:
<html>
<body>
<div>
<p>Some Text:</p>
<form>
<input type="button" value="Click me" onclick="alert('Hi!')">
</form>
</div>
</body>
</html>
When the user clicks on the button, the
click event is first processed by the onclick
event handler in the button's own tag. Then the
click event propagates through the form,
div, and body elements. If the
tag for one of those elements were to have an
onclick event handler defined in it, the click
event would trigger that handler, too. Event bubbling can also be
programmatically canceled at any level along the way.
While the W3C DOM Level 2 contains an
Events module, Microsoft has not implemented it as of IE 6 for
Windows or IE 5 for the Mac. As you will see in Chapter 6, cross-browser applications must be built to
support both the proprietary Microsoft event model and the W3C DOM
event model (and, if necessary, the Navigator 4 event model, which
shares some important features with the W3C model).