1
如何重新啓用IE上的文本選擇,Opera & Webkit?重新啓用文本選擇(Opera,webkit,即)
我禁用它這樣的:
$(this).mousedown(function(){return true;}); //Opera, webkit
$(this).bind('selectstart',function(){return true;}); //IE
(與Firefox,我可以很容易地$(this).css('MozUserSelect','text')
重新啓用;
它的工作原理,謝謝! $(this).unbind('mousedown'); $(this).unbind('selectstart'); – Chuck 2012-08-05 18:25:51
Woops,忘記了。完成! – Chuck 2012-11-25 14:36:49