html div onclick event

前端 未结 9 1118
渐次进展
渐次进展 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:11

    Try this

    $('.expandable-panel-heading:not(#ancherComplaint)').click(function () {
        alert('123');
    });
    
    $('#ancherComplaint').click(function (event) {
        alert($(this).attr("id"));
        event.stopPropagation()
    })
    

    DEMO

提交回复
热议问题