国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發(fā) > CSS > 正文

通過CSS規(guī)則禁止選中文字的實現(xiàn)代碼

2024-07-11 08:35:03
字體:
供稿:網(wǎng)友

語法

Formal syntax: none | text | all | element

復制代碼代碼如下:
(-prefix-)user-select: none;
(-prefix-)user-select: text;
(-prefix-)user-select: all;
(-prefix-)user-select: element;

示例

復制代碼代碼如下:
.row-of-icons {
-webkit-user-select: none; /* Chrome all / Safari all */
-moz-user-select: none; /* Firefox all */
-ms-user-select: none; /* IE 10+ */</p>
<p> /* No support for these yet, use at own risk */
-o-user-select: none;
user-select: none;
}

IE兼容性

目前在IE 10以及IE 10以上版本的瀏覽器可以使用-ms-user-select這個規(guī)則,但在更早版本的IE,我們只能通過javascript實現(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;
});

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 古丈县| 岱山县| 班戈县| 托克逊县| 西贡区| 深州市| 承德市| 正阳县| 炉霍县| 姚安县| 修水县| 政和县| 饶平县| 新源县| 城步| 万源市| 阳谷县| 中超| 黄平县| 满洲里市| 邮箱| 长葛市| 鸡泽县| 衡东县| 赫章县| 屏东县| 汉中市| 博客| 永修县| 延长县| 惠州市| 循化| 信阳市| 孟津县| 古田县| 积石山| 五大连池市| 津市市| 吉首市| 通河县| 横山县|