JavaScript Tutorial/Document/onclick — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 08:24, 26 мая 2010
Add document onclick event handler
<html>
<head>
<title>W3C DOM Event Propagation</title>
<script type="text/javascript">
function init() {
document.onclick = docEvent;
}
function docEvent(evt) {
alert("Document level .");
}
</script>
</head>
<body onload="init()">
</body>
</html>
document.onclick
The onClick event handler specifies what should happen when the mouse is clicked within the Document object.
<head>
<script language="JavaScript">
<!--
document.onclick = myClickHandler;
function myClickHandler() {
alert("The document was clicked!");
}
-->
</script>
</head>
<body>
click anywhere within this document.
</body>
</html>