pointer-events 允许您指定鼠标如何与其触摸的元素进行交互。

要禁用按钮上的默认指针事件,例如:

.button-disabled {
  opacity: .5;
  pointer-events: none;
}