[Функция] event.type
Раздел "Events"
Метод возвращает тип события
Параметры
Примеры
Пример:
При нажатии любой из ссылок отобразить тип события
"HTML"
<div class="timer" style="border:1px solid grey;height:100px;"> </div>
"CSS"
div.timer {background-color: #eef; width:200px;height:200px;}
"Живой пример jQuery"
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <link href="http://test-drupal.ru/themes/slyweb/css/jqueryiframe.css" rel="stylesheet" type="text/css"/> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js"></script> <script> $(document).ready(function(){ $("div").click(function(event) { alert(event.type); // "click" }); }); </script> </head> <body class="iframe"> <div class="timer" style="border:1px solid grey;height:100px;"> </div> </body> </html> <style> div.timer {background-color: #eef; width:200px;height:200px;} </style>
Версия jQuery 1.4.2
Документ создан 2010-08-21