有两种实现方法:

1.如果针对某个特定的div,那么修改样式即可:

-webkit-user-select: none;/*禁用手机浏览器的用户选择功能 */
-moz-user-select: none;

2.如果对于整个页面,那么添加如下js代码:

window.ontouchstart = function(e) { e.preventDefault(); };

 

 

 

转: https://blog.csdn.net/u014520745/article/details/52606454/

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-12-29
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案