禁止选中文字兼容IE、Chrome、FF等_jquery
程序员文章站
2022-05-13 23:14:42
...
复制代码 代码如下:
$(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;/**禁止选中文字*/
}
上一篇: html元素溢出问题
推荐阅读
-
写jQuery-ajax插件,XMLHttpRequest,支持回调,兼容ie、ff、360等浏览器
-
JQuery自适应IFrame高度(支持嵌套 兼容IE,ff,safafi,chrome)_jquery
-
关闭浏览器输入框自动补齐 兼容IE,FF,Chrome等主流浏览器_javascript技巧
-
JQuery自适应IFrame高度(支持嵌套 兼容IE,ff,safafi,chrome)_jquery
-
关闭浏览器输入框自动补齐 兼容IE,FF,Chrome等主流浏览器_javascript技巧
-
写jQuery-ajax插件,XMLHttpRequest,支持回调,兼容ie、ff、360等浏览器
-
javascript - jQuery('#cancel').removeAttr('disabled');这句话IE不能兼容,你能给出兼容IE系列,FF,chrome的程序?
-
禁止选中文字兼容IE、Chrome、FF等_jquery
-
原生态的javascript 存在IE FF chrome的兼容性吗??那么jQuery呢??
-
原生态的javascript 存在IE FF chrome的兼容性吗??那么jQuery呢??