css禁用鼠标点击事件

实现所有事件无法点击

.disabled {
    pointer-events: none;
    cursor: default;
​​​​​​​    opacity: 0.6; 
}

你可能感兴趣的:(前端)