码迷,mamicode.com
首页 > Web开发 > 详细

文本选择问题: css & js

时间:2016-05-08 09:05:20      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

CSS:

 1 /*Disable browser selection*/
 2 .disableselect
 3 {
 4     -webkit-user-select: none;
 5     -moz-user-select: none;
 6     user-select: none;
 7     -ms-user-select:none;
 8     -webkit-touch-callout:none;
 9     -webkit-tap-highlight-color: rgba(0,0,0,0);
10 }
11 .enableselect {
12     -webkit-user-select: text;
13     -moz-user-select: text;
14     -ms-user-select:text;
15     user-select:all;
16 }

 

JS:

1 var clearSlct= "getSelection" in window ? function(){
2  window.getSelection().removeAllRanges();
3 } : function(){
4  document.selection.empty();
5 };

 

文本选择问题: css & js

标签:

原文地址:http://www.cnblogs.com/zsk526/p/5469762.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!