禁用表单元素 && 禁止选中

一、禁用表单元素

1.dom设置属性

disabled="disabled"  ||   disabled=true

2.css样式(高版本浏览器)

pointer-events:none

二、禁止选中

.disabled{

    -webkit-user-select:none;

    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
}





Put the favorites in the favorites and empty the favorites.
原文地址:https://www.cnblogs.com/justSmile2/p/9450270.html