在做自助收银系统时,用户在页面任何地方点击两下,会默认选中两个点之间的区域,还会出现选中的颜色,这对于触屏程序来说是很不友好的,折腾半个小时候找到了一个解决办法,亲测有效。
1.使用以下代码,两点之间将不再会默认选中,我把这个css放在APP.vue下,全局有效
.disable-select {
user-select: none; /* supported by Chrome and Opera */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
}