$(el).attr('unselectable',' on')
.css({'-moz-user-select':'-moz-none',
'-moz-user-select':'none',
'-o-user -select':'none',
'-khtml-user-select':'none', /* 이것을 클래스에 넣을 수도 있습니다 */
'-webkit-user-select':'none ',/ * 대신 여기에 CSS 클래스를 추가하세요 */
'-ms-user-select':'none',
'user-select':'none'
}).bind(' selectstart', function(){ return false; });
위 분석에 따르면 필요한 선택한 텍스트 비활성화 영역의 CSS를 설정할 수 있습니다. 예:
.table {
텍스트 정렬: 중앙;
높이: 39px;
moz-user-select: -moz-none; -select: none
-o-user-select:none
-khtml-user-select:none /* 이것을 클래스에 넣을 수도 있습니다. */
-webkit-user-select :none;/ * 여기에 CSS 클래스를 추가하세요 */
-ms-user-select:none
user-select:none;/***/
}