欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

禁止選中文字兼容IE、Chrome、FF等

 更新時間:2013年09月04日 16:41:55   作者:  
禁止選中文字在某些時候還是蠻有必要的,比如不想讓他人復制自己的文章之類的,下面為大家介紹下具體的實現(xiàn)方,而且兼容目前主流瀏覽器
復制代碼 代碼如下:

$(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; });

根據(jù)上面分析 可以設置 你需要禁止選中文字區(qū)域的 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;/**禁止選中文字*/
}

相關文章

最新評論