网页中一直点击出现蓝色背景问题

可以用两种方法解决

1)css

 body{  

-webkit-user-select:none; 
-moz-user-select:none; 
-ms-user-select:none; 
user-select:none;
}
  1. js
    document.onselectstart=new Function(“return false”);

原文:https://blog.csdn.net/f286853387/article/details/80110344

猜你喜欢

转载自blog.csdn.net/qq_43287934/article/details/88887821