我知道之前已经问过这个问题,但答案根本不起作用
我尝试在这里添加jquery禁用选择代码,它不起作用
jQuery.fn.extend({
disableSelection : function() {
return this.each(function() {
this.onselectstart = function() { return false; };
this.unselectable = "on";
jQuery(this).css('user-select', 'none');
jQuery(this).css('-o-user-select', 'none');
jQuery(this).css('-moz-user-select', 'none');
jQuery(this).css('-khtml-user-select', 'none');
jQuery(this).css('-webkit-user-select', 'none');
});
}
});
我尝试添加user-select none,但它不起作用
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: moz-none;
-ms-user-select: none;
user-select: none;
我正在考虑在绘画中制作一个透明的字母表(会有点资源)
我需要文本不可突出的原因是它是一个使用游戏查询的游戏,当拖动对象时,div中的文本会突出显示,这使得它看起来非常难看。
答案 0 :(得分:1)