html div onclick event

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

    put your jquery function inside ready function for call click event:

    $(document).ready(function() {
    
      $("#ancherComplaint").click(function () {
         alert($(this).attr("id"));
      });
    
    });
    

提交回复
热议问题