标签:input 火狐 strong inpu number sof 时间 a标签 line
一、css3中可以使用"user-select"属性:
body{
-webkit-user-select:none;/*谷歌 /Chrome*/
-moz-user-select:none; /*火狐/Firefox*/
-ms-user-select:none; /*IE 10+*/
user-select:none;
}
user-select:auto:默认,可以选中; none:不可选;text:只可选文本;all:父级;
二、js实现:
document.onselectstart = function(){return false;}
document.onselectstart = null ;
jquery 实现:
$("body").hover(function(){
document.onselectstart = function(){return false;},
},
function(){
document.onselectstar=text;
}
});
注意:
onselect
onselect是在文本框(input、textarea)内的文本被选中时所触发的事件,其触发时间是在文本被选择以后(即文本已经被选择,已经
显式的表现出来)。该事件只被input和textarea标签支持。
标签:input 火狐 strong inpu number sof 时间 a标签 line
原文地址:http://www.cnblogs.com/cnlg123/p/7644795.html