禁用表单元素 && 禁止选中
一、禁用表单元素
1.dom设置属性
disabled="disabled" ||
disabled=true
2.css样式(高版本浏览器)
二、禁止选中
.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.