html div onclick event

前端 未结 9 1109
渐次进展
渐次进展 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 13:57

    Change your jQuery code with this. It will alert the id of the a.

    $('.expandable-panel-heading:not(#ancherComplaint)').click(function () {
    markActiveLink();    
         alert('123');
     });
    
    function markActiveLink(el) {   
    var el = $('a').attr("id")
        alert(el);
    } 
    

    Demo

提交回复
热议问题