JavaScript关于浏览器文档文字允许禁止选择文本

有时候我们需要禁止和允许用户选择文本内容。

IEChrome使用document.onselectstart来禁止和允许用户选择文档中的文本

例如:

document.onselectstart=function(){return false;};/*禁止用户选择(选中)浏览器文档*/
document.onselectstart=function(){return true;};/*允许用户选择(选中)浏览器文档*/

如果是FireFox浏览器则使用document.onmousedown来禁止和允许用户选择文档中的文本
document.onmousedown=function(){return false;}
document.onmousedown=function(){return true;}

posted @ 2014-12-25 11:11  翱翔软件  阅读(483)  评论(0)    收藏  举报

欢迎访问翱翔软件