Jump to content
  • 0

Помогите с скриптом


flipper1001
 Share

Question

У меня есть вот такая конструкция


<div class=1>
<div class =2>
</div>
</div>

в скрипте я использую вот такой код

$(".1").mouseup(function(){

$(this).append('<span style="color:#F00;">Mouse up.</span>');

}).mousedown(function(){

$(this).append('<span style="color:#00F;">Mouse down.</span>');

});

при этом mousedown выполняется и при клику на первы и на второй див как мне сделать чтобы это работало только при клике на первый див а при клике на второй нет?

Edited by flipper1001
Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Всё работает http://jsfiddle.net/Radiocity/g87cA/

Во-первых, все значения параметров в теге заключаются в кавычки:


<input name="somename" type="text" value="blablabla" class="someclass"/>

Во-вторых, "имена классов должны начинаться с латинского символа и могут содержать в себе символ дефиса (-) и подчеркивания (_). Использование русских букв в именах классов недопустимо." (с) htmlbook


<div class="some_class"></div>

Link to comment
Share on other sites

  • 0

чего работает то задача то не click поймать а нажатие и отпускание кнопки при нажатии одно действие при отпускании другое.

оно кстати и так все работает http://jsfiddle.net/AdxHV/

при нажатии на оба дива происходит одно и тоже а мне надо чтобы при нажатии одного скрипт работал а при надатии на тот который внутри нет

Edited by flipper1001
Link to comment
Share on other sites

  • 0

чего работает то задача то не click поймать а нажатие и отпускание кнопки при нажатии одно действие при отпускании другое.

оно кстати и так все работает http://jsfiddle.net/AdxHV/

при нажатии на оба дива происходит одно и тоже а мне надо чтобы при нажатии одного скрипт работал а при надатии на тот который внутри нет

остановить всплытие при клике на дочерний элемент.


$('.a2').bind("mousedown mouseup", function(e){e.stopPropagation();});

$(".a1").mouseup(function(){
$(this).append('<span style="color:#000;">Mouse up.</span>');
}).mousedown(function(){
$(this).append('<span style="color:#000;">Mouse down.</span>');
});

Edited by wwt
  • Like 1
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