(1)当写入文本时,需要换行时使用\r\n,但是必须使用双引号。


(2)h5页面的文字内容,在移动端,长按会弹出菜单【复制、剪切、分享等】,需要禁止时可以使用以下的代码:

* {
-webkit-touch-callout:none;
-webkit-user-select:none;
-khtml-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
}

 

相关文章:

  • 2021-06-18
  • 2021-12-03
  • 2022-12-23
  • 2022-12-23
  • 2021-03-28
  • 2021-11-08
  • 2021-12-03
猜你喜欢
  • 2022-12-23
  • 2022-03-07
  • 2021-08-25
  • 2021-06-21
  • 2021-11-06
  • 2021-07-23
  • 2021-12-23
相关资源
相似解决方案