如何使用jQuery禁用文本选择?

jQuery或jQuery-UI是否具有禁用给定文档元素的文本选择功能?

回答:

在jQuery 1.8中,可以按照以下步骤进行操作:

(function($){

$.fn.disableSelection = function() {

return this

.attr('unselectable', 'on')

.css('user-select', 'none')

.on('selectstart', false);

};

})(jQuery);

以上是 如何使用jQuery禁用文本选择? 的全部内容, 来源链接: utcz.com/qa/398457.html

回到顶部