重新启用文本选择(Opera、webkit等)

Re-enable text-selection (Opera, webkit,ie)

本文关键字:Opera webkit 选择 文本 启用 新启用      更新时间:2023-09-26

如何在IE、Opera&Webkit?

我这样禁用了它:

$(this).mousedown(function(){return true;}); //Opera, webkit
$(this).bind('selectstart',function(){return true;}); //IE

(有了firefox,我可以很容易地用$(this).css('MozUserSelect','text')重新启用它;

我认为最好的做法是解除事件侦听器的绑定。

不要使用bind()unbind()方法。请改用on()off()——从jQuery 1.7及更高版本开始,首选。