我正在尝试禁用文本选择,它在除 IE 之外的所有浏览器中都可以正常工作。我在 CSS 和索引中添加了一些代码。它仍然没有禁用。
我已将此添加到索引中:
$('#poet').disableSelection(); // deprecated in jQuery UI 1.9
$(el).attr('unselectable','on')
.css({'-moz-user-select':'-moz-none',
'-moz-user-select':'none',
'-o-user-select':'none',
'-khtml-user-select':'none', /* you could also put this in a class */
'-webkit-user-select':'none',/* and add the CSS class here instead */
'-ms-user-select':'none',
'user-select':'none'
}).bind('selectstart', function(){ return false; });
$("#123").bind( "selectstart", function(e){
e.preventDefault();
return false;
});
$("#123").bind("selectstart", function (evt) {
evt.preventDefault();
});
这对 .css 文件:
* {
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-ms-user-select:none;
}
任何帮助将不胜感激。谢谢你。