欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

html 怎么设置文字无法选中

程序员文章站 2022-03-05 09:09:41
...

html设置文字无法选中的方法:1、创建HTML页面文件;2、通过设置css样式为“user-seletct: none;-webkit-user-seletct: none;-moz-user-seletct: none;”即可。

html 怎么设置文字无法选中

本文操作环境:windows7系统、HTML5版、DELL G3电脑

html 怎么设置文字无法选中?

控制HTML页面内容不能选中的方法

方法有二

一: css 方法

user-seletct: none;
-webkit-user-seletct: none;
-moz-user-seletct: none;
-ms-user-seletct: none;

none: 不能选中内容

text: 能选中内容

二:js 方法

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

返回 false,不能选中

返回 true,能选中

推荐学习:《HTML5视频教程

以上就是html 怎么设置文字无法选中的详细内容,更多请关注其它相关文章!

相关标签: html