$(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-none; -select: none ;
-o-user-select:none;
-khtml-user-select:none; /* これをクラスに含めることもできます */
-webkit-user-select :none;/ * 代わりにここに CSS クラスを追加します */
-ms-user-select:none;
user-select:none;/***/
}