手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >禁止选中文字兼容IE、Chrome、FF等
禁止选中文字兼容IE、Chrome、FF等
摘要:复制代码代码如下:$(el).attr('unselectable','on').css({'-moz-user-select':'-moz...

复制代码 代码如下:

$(el).attr('unselectable','on')

.css({'-moz-user-select':'-moz-none',

'-moz-user-select':'none',

'-o-user-select':'none',

'-khtml-user-select':'none', /* you could also put this in a class */

'-webkit-user-select':'none',/* and add the CSS class here instead */

'-ms-user-select':'none',

'user-select':'none'

}).bind('selectstart', function(){ return false; });

根据上面分析 可以设置 你需要禁止选中文字区域的 css。如:

复制代码 代码如下:

.table {

text-align: center;

vertical-align:middle;

height: 39px;

overflow: hidden;

moz-user-select: -moz-none;

-moz-user-select: none;

-o-user-select:none;

-khtml-user-select:none; /* you could also put this in a class */

-webkit-user-select:none;/* and add the CSS class here instead */

-ms-user-select:none;

user-select:none;/**禁止选中文字*/

}

【禁止选中文字兼容IE、Chrome、FF等】相关文章:

基于jQuery插件实现环形图标菜单旋转切换特效

JavaScript中的parse()方法使用简介

JavaScript中fixed()方法的使用简介

JavaScript数据结构与算法之集合(Set)

必须点击广告才能进入的代码

JS或jQuery获取ASP.NET服务器控件ID的方法

js实现鼠标移到链接文字弹出一个提示层的方法

JavaScript实现点击自动选择TextArea文本的方法

JavaScript中的small()方法使用详解

让文字在页面上90度,180度翻转

精品推荐
分类导航