最简单的让DIV中的input、a标签等都无法触发点击事件的方法

给这个div添加上属性style="pointer-events: none;"

jquery的方法:
$("div的选择器").css("pointer-events","none");

原文地址:https://www.cnblogs.com/hukuangjie/p/12286854.html