vue界面禁止长按选中
时间: 2023-07-01 20:10:00 浏览: 130
可以通过CSS样式来实现禁止长按选中。在需要禁止长按选中的元素上添加以下样式:
```
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
```
这样就可以禁止用户在该元素上进行长按选中操作了。
相关问题
vue全局配置界面禁止长按选中
你可以在 CSS 样式文件中添加以下代码来禁止长按选中:
```css
/* 禁止长按选中 */
* {
-webkit-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
}
```
如果你只想禁止 input 和 textarea 元素的长按选中,可以这样写:
```css
/* 禁止 input 和 textarea 元素长按选中 */
input, textarea {
-webkit-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
}
```
注意,这样做会禁止用户选中网页上的内容,包括文字、图片等,所以应该根据实际需求来选择是否使用。
阅读全文