首页 > 教程 >

CSS实现禁止页面文字被选中功能

2023-02-18教程围观

简介通过css实现页面文字不能被选中.cannotselect{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}css介绍user-select说明控制选取能否被选择。该特性是非标准的,请尽量不要在生产环境中使用它!Forma

  

CSS实现禁止页面文字被选中功能


通过css实现页面文字不能被选中

.cannotselect {    -webkit-touch-callout: none;    -webkit-user-select: none;    -moz-user-select: none;    -ms-user-select: none;    user-select: none;}

css介绍  user-select  说明

控制选取能否被选择。

该特性是非标准的,请尽量不要在生产环境中使用它!

Formal syntax: none | text | all | element

none:元素内的文字及其子元素将不会被选中

text:用户可以选中文字

all:在一个HTML编辑器中,当双击子元素或者上下文时,那么包含该子元素的最顶层元素也会被选中。

element:火狐和IE中有效. Enables selection to start within the element; however, the selection will be contained by the bounds of that element.


浏览器兼容性

FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafari (WebKit)
Basic support加前缀-webkit-加前缀-moz10版本以上加前缀-ms-加前缀-webkit
element未实现支持支持
未实现

-webkit-touch-callout  说明

这个CSS 属性禁用了默认的callout展示, callout是指当触摸并按住一个元素的时候出现的提示。

当在iOS上一直按住一个目标元素时,Safari会展示一个关于这个链接的callout信息。webkit-touch-callout属性允许禁用掉这一行为。

-webkit-touch-callout 属性最早在 iOS 2.0 上实现,后来被添加到WebKit

允许的值

default:此值表示显示默认的callout

none:此值表示禁用callout

浏览器兼容性

FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafari (WebKit)
Basic support未实现未实现未实现未实现支持



除了css外,我们同样可以使用js来实现:

document.body. start = document.body.  =function(){    return false;}




下载链接:网站源码/小程序源码/网站模板下载

Tags: 页面 功能 实现 文字 禁止