HTML CSS Reference/HTML Attributes Reference/event — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 08:20, 26 мая 2010
"event" Example
<HTML>
<head><Title>Example For event</Title></head>
<body>
<script language="JavaScript"
for="myButton"
event="onclick()">alert("button was clicked!")</script>
<input type="Button" id="myButton" value="Click here to trigger event">
</body>
</HTML>
event is applied to
+----------------+--------------------------------------------------------------+
| Applied_To |<script> |
+----------------+--------------------------------------------------------------+
"event" Syntax and Note
Note:
This attribute specifies the event which will execute the script code.
Syntax:
<script event="value"> . . . </script>