Jump to content
php.lv forumi
  • 0

jQuery problēma


eT`

Question

Tamm tātad, man ir aptuveni šāds kods:

 

HTML:

<div class="foo">A<div class="bar">...</div></div>
<div class="foo">B<div class="bar">...</div></div>
<div class="foo">C<div class="bar">...</div></div>

 

 

un jQuery

    $(".foo").mouseenter(function(){
        $(this).children(".bar").show();
    }).mouseleave(function(){
        $(this).children(".bar").hide();
    })

 

vēl man uz vecāku elementu foo ir on('click',function() { }); kas dara viskautko

 

problēma ir sekojoša - uzspiežot uz elementu dažreiz mēdz nenostrādāt uz foo uzliktais onclick, bet ja novāc tos mouseenter, un mouseleave eventus, tad viss iet gludi.

varētu tā būt, ka brīdī, kad tiek izsaukts onclick darbojas vēl hide/show un tāpēc tas events mēdz nenostrādāt?

 

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

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.

Loading...
×
×
  • Create New...