问答详情
源自:3-4 jQuery表单事件之submit事件

.stopPropagation()在这里怎么用?事件名写什么

事件名写什么

提问者:侠客岛的含笑 2017-04-09 16:36

个回答

  • hans_2
    2017-04-09 20:27:33
    已采纳

    $("p").click(function(event){
        event.stopPropagation();
        alert("The p element was clicked.");
      });

    这样就能防止p元素上的事件冒泡到p的父元素

    http://www.runoob.com/jquery/event-stoppropagation.html

  • 淡水狗
    2017-07-16 17:44:54

    难怪我写e.stopPropagation()没反应