如何让Vue页面内容不可选中,仅允许输入框和文本域选择?

2026-04-09 07:410阅读0评论SEO资源
  • 内容介绍
  • 文章标签
  • 相关推荐

本文共计259个文字,预计阅读时间需要2分钟。

如何让Vue页面内容不可选中,仅允许输入框和文本域选择?

在网页上滚动时,为了阻止用户使用CSS样式控制,可以将以下代码复制到Vue应用下的index.文件的body标签中:

* { -webkit-touch-callout: none; -webkit-user-select: none; -webkit-tap-highlight-color: transparent;}

上网上翻了翻,共找到两种方式

CSS样式控制,只需将下面代码复制到 vue应用下,index.html文件中的body标签上

*{ -webkit-touch-callout:none; /*系统默认菜单被禁用*/ -webkit-user-select:none; /*webkit浏览器*/ -khtml-user-select:none; /*早期浏览器*/ -moz-user-select:none;/*火狐*/ -ms-user-select:none; /*IE10*/ user-select:none; } input{ -webkit-user-select:auto; /*webkit浏览器*/ } textarea{ -webkit-user-select:auto; /*webkit浏览器*/ }

js控制方式,需要重写onselectstart(),onselect。

阅读全文

本文共计259个文字,预计阅读时间需要2分钟。

如何让Vue页面内容不可选中,仅允许输入框和文本域选择?

在网页上滚动时,为了阻止用户使用CSS样式控制,可以将以下代码复制到Vue应用下的index.文件的body标签中:

* { -webkit-touch-callout: none; -webkit-user-select: none; -webkit-tap-highlight-color: transparent;}

上网上翻了翻,共找到两种方式

CSS样式控制,只需将下面代码复制到 vue应用下,index.html文件中的body标签上

*{ -webkit-touch-callout:none; /*系统默认菜单被禁用*/ -webkit-user-select:none; /*webkit浏览器*/ -khtml-user-select:none; /*早期浏览器*/ -moz-user-select:none;/*火狐*/ -ms-user-select:none; /*IE10*/ user-select:none; } input{ -webkit-user-select:auto; /*webkit浏览器*/ } textarea{ -webkit-user-select:auto; /*webkit浏览器*/ }

js控制方式,需要重写onselectstart(),onselect。

阅读全文