如果想去掉这部分,可以加入下面的代码

当然这部分也会使用户不能使用长按复制,所以不建议全局使用。针对某一部分来做可能会好一点。

<style type="text/css">
div,a,img {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select:none;
}
</style>

相关文章:

  • 2021-11-03
  • 2021-09-07
  • 2021-10-01
  • 2021-09-25
  • 2020-12-22
  • 2021-11-27
  • 2021-12-08
  • 2021-10-18
猜你喜欢
  • 2021-10-07
  • 2021-12-12
  • 2021-04-14
  • 2021-10-01
  • 2021-06-14
  • 2021-11-27
  • 2021-11-16
相关资源
相似解决方案