通过jquery或css来禁止div点击事件

 

jQuery方法:
$(".hdr").css({"pointer-events": "none" });
CSS方法:
.hdr{ pointer-events: none; }