Документ взят из кэша поисковой машины. Адрес
оригинального документа
: http://www.sao.ru/cats/~satr/JS/Guide/evnt.htm
Дата изменения: Fri Dec 12 11:17:50 1997 Дата индексирования: Tue Oct 2 05:25:28 2012 Кодировка: Поисковые слова: п р п п р п |
onChange
and onClick
.
Event handling changed significantly between Navigator 3.0 and Navigator 4.0. Navigator 4.0 added:
For a good introduction to event handling in Navigator 4.0, see the article Getting Ready for JavaScript 1.2 Events in the online View Source magazine. In addition, the JavaScript technical notes contain information on programming events. JavaScript supports the events summarized in Table 2.1.
Table 2.1 Navigator event handlers
Defining an Event Handler
In all versions of Navigator, you define an event handler (a JavaScript function or series of statements) to handle an event. If an event applies to an HTML tag (that is, the event applies to the JavaScript object created from that tag), then you can define an event handler for it. The name of an event handler is the name of the event, preceded by "on." For example, the event handler for the focus
event is onFocus
.
To create an event handler for an HTML tag, add an event handler attribute to the tag. Put JavaScript code in quotation marks as the attribute value. The general syntax is
<TAG eventHandler="JavaScript Code">
where TAG
is an HTML tag, eventHandler
is the name of the event handler, and JavaScript Code
is a sequence of JavaScript statements.
For example, suppose you have created a JavaScript function called compute
. You make Navigator call this function when the user clicks a button by assigning the function call to the button's onClick
event handler:
<INPUT TYPE="button" VALUE="Calculate" onClick="compute(this.form)">
You can put any JavaScript statements as the value of the onClick
attribute. These statements are executed when the user clicks the button. To include more than one statement, separate statements with semicolons (;).
Notice in the preceding example this.form
refers to the current form. The keyword this
refers to the current object, which is the button. The construct this.form
then refers to the form containing the button. The onClick
event handler is a call to the compute
function, with the current form as the argument.
Be sure to alternate double quotation marks with single quotation marks. Because event handlers in HTML must be enclosed in quotation marks, you must use single quotation marks to delimit string arguments. For example:
<INPUT TYPE="button" NAME="Button1" VALUE="Open Sesame!"
In general, it is good practice to define functions for your event handlers instead of using multiple JavaScript statements:
onClick="window.open('mydoc.html', 'newWin')">
Figure 2.1 Form with an event handler
<HEAD>
<SCRIPT>
<!--- Hide script from old browsers
function compute(f) {
if (confirm("Are you sure?"))
f.result.value = eval(f.expr.value)
else
alert("Please come back again.")
}
// end hiding from old browsers -->
</SCRIPT>
</HEAD><BODY>
The HEAD of the document defines a single function,
<FORM>
Enter an expression:
<INPUT TYPE="text" NAME="expr" SIZE=15 >
<INPUT TYPE="button" VALUE="Calculate" onClick="compute(this.form)">
<BR>
Result:
<INPUT TYPE="text" NAME="result" SIZE=15 >
</FORM>
</BODY>compute
, taking one argument, f
, which is a Form
object. The function uses the window.confirm
method to display a Confirm dialog box with OK and Cancel buttons.
If the user clicks OK, then confirm
returns true, and the value of the result
text field is set to the value of eval(f.expr.value)
. The JavaScript function eval
evaluates its argument, which can be any string representing any JavaScript expression or statements.
If the user clicks Cancel, then confirm
returns false and the alert
method displays another message.
The form contains a button with an onClick
event handler that calls the compute
function. When the user clicks the button, JavaScript calls compute
with the argument this.form
that denotes the current Form
object. In compute
, this form is referred to as the argument f
.
Calling Event Handlers Explicitly
In Navigator 3.0 and later releases, you can reset an event handler specified by HTML, as shown in the following example.
<SCRIPT LANGUAGE="JavaScript">
function fun1() {
...
}
function fun2() {
...
}
</SCRIPT><FORM NAME="myForm">
<INPUT TYPE="button" NAME="myButton"
onClick="fun1()">
</FORM><SCRIPT>
Note that event handlers are function references, so you must assign
document.myForm.myButton.onclick=fun2
</SCRIPT>fun2
itself, not fun2()
(the latter calls fun2
and has whatever type and value fun2
returns).
Also, because the event handler HTML attributes are literal function bodies, you cannot use <INPUT onClick=fun1>
in the HTML source to make fun1
the onClick
handler for an input. Instead, you must set the value in JavaScript, as in the example.
Finally, because JavaScript is case-sensitive, in Navigator 3.0 you must spell event handler names in lowercase in JavaScript. In Navigator 4.0, you can also use the mixed case version of the name.
The Event Object
In Navigator 4.0, each event has an associated event
object. The event
object provides information about the event, such as the type of event and the location of the cursor at the time of the event. When an event occurs, and if an event handler has been written to handle the event, the event
object is sent as an argument to the event handler.
In the case of a MouseDown
event, for example, the event
object contains the type of event (in this case "MouseDown"
), the x and y position of the mouse cursor at the time of the event, a number representing the mouse button used, and a field containing the modifier keys (Control, Alt, Meta, or Shift) that were depressed at the time of the event. The properties used within the event
object vary from one type of event to another. This variation is provided in the individual event descriptions in the JavaScript Reference.
Event Capturing
Typically, the object on which an event occurs handles the event. For example, when the user clicks a button, it is often the button's event handler that handles the event. Sometimes you may want the window
or document
object to handle certain types of events instead of leaving them for the individual parts of the document. For example, you may want the document
object to handle all MouseDown
events no matter where they occur in the document.
In Navigator 4.0, JavaScript's event capturing model allows you to define methods that capture and handle events before they reach their intended target. To accomplish this, the window
, document
, and layer
objects use these event-specific methods:
captureEvents
--captures events of the specified type.
releaseEvents
--ignores the capturing of events of the specified type.
routeEvent
--routes the captured event to a specified object.
handleEvent
--handles the captured event. (Not a method of layer
)
NOTE: If a window with frames wants to capture events in pages loaded from different locations, you need to useBriefly, the steps for setting up event capturing are:captureEvents
in a signed script and callenableExternalCapture
. For information on signed scripts, see Chapter 7, "JavaScript Security."
Click
events.
Click
events, use a statement such as the following:
window.captureEvents(Event.CLICK);The argument to
captureEvents
is a property of the event
object and indicates the type of event to capture. To capture multiple events, the argument is a list separated by or (|). For example, the following statement captures Click
, MouseDown
, and MouseUp
events:
window.captureEvents(Event.CLICK | Event.MOUSEDOWN | Event.MOUSEUP)
e
is the event
object for the event.
function clickHandler(e) {You have four options for handling the event:
//What goes here depends on how you want to handle the event.
//This is described below.
}
function clickHandler(e) {
return true;
}
false
. In the case of a link, the link is not followed. If the event is non-cancelable, this ends the event handling for that event.
function clickHandler(e) {
return false;
}
routeEvent
calls an event handler, the event handler is activated. If routeEvent
calls an event handler whose function is to display a new page, the action takes place without returning to the capturing object.
function clickHandler(e) {
var retval = routeEvent(e);
if (retval == false) return false;
else return true;
}
handleEvent
method of an event receiver. Any object that can register event handlers is an event receiver. This method explicitly calls the event handler of the event receiver and bypasses the capturing hierarchy. For example, if you wanted all Click
events to go to the first link on the page, you could use:
function clickHandler(e) {
window.document.links[0].handleEvent(e);
}
onClick
handler, the link will handle any click event it receives.window.onClick = clickHandler;
<HTML>
<SCRIPT>
function fun1(e) {
alert ("The window got an event of type: " + e.type +
" and will call routeEvent.");
window.routeEvent(e);
alert ("The window returned from routeEvent.");
return true;
}
function fun2(e) {
alert ("The document got an event of type: " + e.type);
return false;
}
function setWindowCapture() {
window.captureEvents(Event.CLICK);
}
function releaseWindowCapture() {
window.releaseEvents(Event.CLICK);
}
function setDocCapture() {
document.captureEvents(Event.CLICK);
}
function releaseDocCapture() {
document.releaseEvents(Event.CLICK);
}
window.onclick=fun1;
document.onclick=fun2;
</SCRIPT>
...
</HTML>
Last Updated: 11/26/97 09:25:30