选择DIV但不是里面的链接,jQuery问题

前端之家收集整理的这篇文章主要介绍了选择DIV但不是里面的链接,jQuery问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下div:
<div class='amazingmenu' id='menupull'>
    <img src='images/down.png' width=20 height=20 align='right'/>
    <div id='menupullhideme'>click the arrow to read the rest!<br /></div>
    more jokes on <a href='http://www.amazingjokes.com'>amazingjokes.com</a>
</div>

单击DIV或图像应该在jQuery中执行某些功能

$('#menupull').click( function() {
          alert( 'pullmenu clicked' );
});

我想做到这一点,它只在我点击DIV或图像而不是链接时提醒消息.试过这个:

$('#menupull:not(a)').click( function() {...

但那没用.有任何想法吗?

解决方法

问题可能是事件冒泡..你可以做什么,是在你的“点击”事件检查中,如果nodeName / tagName是否为A,如果是,则中止你的其余功能并让锚只做它的事情.

我的jQuery有点生疏,因为我自己并没有使用它,但我觉得这样的事情……

$('#menupull').click( function(e) {
    var target  = $(e.target);
    if( target.is('a') ) {
        return true; // True,because we don't want to cancel the 'a' click.
    }
});
原文链接:https://www.f2er.com/css/217593.html

猜你在找的CSS相关文章