Jump to content
  • 0

Отслеживание событий


Veseloff
 Share

Question

Если какая-то страница, есть на ней какие-то элементы. Для каких-то из них назначены события — например click. Как можно узнать какие события стоят на элементе, откуда они подключаются и что делают. Смотрел firebug — ничего не нашёл.

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

Если какая-то страница, есть на ней какие-то элементы. Для каких-то из них назначены события — например click. Как можно узнать какие события стоят на элементе, откуда они подключаются и что делают. Смотрел firebug — ничего не нашёл.

Если через addEventListener, то никак.

Весело, правда? И после этого мне говорят, что навешивание обработчиков через addEventListener это true, а через атрибуты - не true, отстой, прошлый век, некошерно, по-ламерски, и вообще руки за такое отрывать.

  • Like 1
Link to comment
Share on other sites

  • 0

Если через addEventListener, то никак.

Весело, правда? И после этого мне говорят, что навешивание обработчиков через addEventListener это true, а через атрибуты - не true, отстой, прошлый век, некошерно, по-ламерски, и вообще руки за такое отрывать.

Вот так я и знал. Беда, чо.

Link to comment
Share on other sites

  • 0

Через addEventListener нельзя отследить анонимные функции, именованые узнать можно разве нет?

Анонимные - это вроде таких?

elem.addEventListener('click', function() {alert('foo');}, false);

По-моему, Хром их показывает.

Link to comment
Share on other sites

  • 0

Я новичек в js, поэтому, если ляпну что-то не то, прошу сильно не пинать)

Конкретные, думаю, так.

<html>
<head>
<meta charset="utf-8">
<style type="text/css">
body { background-color:#ffcc33; margin:0px; }
div { background-color:#0033cc; height:100px; margin:15px; width:100px }
</style>
<script type="text/javascript">
function l() {
var el = document.getElementsByTagName("div")[0];
alert(el.onclick);
el.onclick = ev;
alert(el.onclick);
}
function ev() { return alert(1); }
</script>
</head>
<body onload="l()">
<div></div>
</body>
</html>

Edited by nerv
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy