html div onclick event

前端 未结 9 1093
渐次进展
渐次进展 2021-02-05 13:23

I have one html div on my jsp page, on that i have put one anchor tag, please find code below for that,

9条回答
  •  清歌不尽
    2021-02-05 14:04

    I would have used stopPropagation like this:

    $('.expandable-panel-heading:not(#ancherComplaint)').click(function () {
         alert('123');
     });
    
    $('#ancherComplaint').on('click',function(e){
        e.stopPropagation();
        alert('hiiiiiiiiii');
    });
    

提交回复
热议问题