我是靠谱客的博主 平淡洋葱,最近开发中收集的这篇文章主要介绍禁止选中文字兼容IE、Chrome、FF等,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

复制代码 代码如下:

$(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等的全部内容,希望文章能够帮你解决禁止选中文字兼容IE、Chrome、FF等所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(155)

评论列表共有 0 条评论

立即
投稿
返回
顶部