Jump to content
  • 0

Сабытия в JavaScript


Bolmazov
 Share

Question

У меня есть два элемента:

<div class='node'>Щелкни здесь!
<span class='text'>Или щелкни здесь!</span>
</div>

Оба получают с помощью js обработчики onclick, но разные.

Для этого я пишу:

	nodes = $(".node").get();
for (node in nodes){
nodes[node].onclick=n_click;
}
nodes = $(".text").get();
for (node in nodes){
nodes[node].onclick=t_click;
}

Как браузер заставить отличать по какому элементу я щелкнул?

Вот нашел как добиться остановки всплытия события.

Вот беда: не знаю куда этот код пихнуть в моем случае.

Edited by Bolmazov
Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Извини за мою тупость

Допустим вот функция t_click :

function t_click(){
element.onclick = function(event) {
event = event || window.event // кросс-браузерно
// Вариант Internet Explorer:
event.cancelBubble = true
// Вариант стандарта W3C:
if (event.stopPropagation) {
event.stopPropagation()
}
}
alert('Что-то еще, что должна делать эта функция.');
}

Или как? Можно пример?

Link to comment
Share on other sites

  • 0

странная функиция, что такое element? Где он объявлен?

У тебя было написано: nodes[node].onclick=t_click;

Как я понял по килку на ноде сразу вызывается t_click, то:

function t_click(e){
e = e|| window.event;
if (e.stopPropagation) e.stopPropagation();
else e.cancelBubble = true;

alert('Что-то еще, что должна делать эта функция.');
}

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