ios嵌套H5页面,点击数字时就会弹出打电话的功能;解决方法:

   在head标签中添加:

<meta name="format-detection" content="telephone=no">

ios嵌套H5页面,只要碰到页面,就会使input获取焦点,调取ios键盘,解决方法:
在页面上添加js如下:
$("body")[0].addEventListener("touchstart",function(){
    document.activeElement.blur();
    })

 

相关文章:

  • 2021-07-04
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-21
猜你喜欢
  • 2022-01-14
  • 2022-01-02
  • 2021-09-06
  • 2021-06-01
  • 2022-12-23
  • 2021-09-29
  • 2022-12-23
相关资源
相似解决方案