禁止选中文字兼容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;/**禁止选中文字*/
}
您可能感兴趣的文章:
- js代码判断浏览器种类IE、FF、Opera、Safari、chrome及版本
- 使用Chrome调试JavaScript的断点设置和调试技巧
- JavaScript无提示关闭窗口(兼容IE/Firefox/Chrome)
- 解决javascript:window.close()在chrome,Firefox下失效的问题
- 如何实现chrome浏览器关闭页面时弹出“确定要离开此面吗?”
- 完美兼容IE,chrome,ff的设为首页、加入收藏及保存到桌面js代码
- JQuery自适应IFrame高度(支持嵌套 兼容IE,ff,safafi,chrome)
- jQuery一步一步实现跨浏览器的可编辑表格,支持IE、Firefox、Safari、Chrome、Opera
- 兼容IE、FireFox、Chrome等浏览器的xml处理函数js代码
- jQuery旋转插件—rotate支持(ie/Firefox/SafariOpera/Chrome)
- chrome浏览器当表单自动填充时如何去除浏览器自动添加的默认样式
- js chrome浏览器判断代码
- json格式化/压缩工具 Chrome插件扩展版
- 解决ExtJS在chrome或火狐中正常显示在ie中不显示的浏览器兼容问题
- JavaScript获取鼠标坐标的函数(兼容IE、FireFox、Chrome)
- javascript判断chrome浏览器的方法
- Chrome扩展页面动态绑定JS事件提示错误
- Chrome开发者工具9个调试技巧详解