app中h5交互的一些坑 记录笔记

  1、ios开发镶嵌 h5页面 存在input 圆角问题(安卓直角) 解决办法

   inpput{

    -webkit-appearance: none;
    border-radius: 0px;

   }

  2、ios 镶嵌页面 当原生键盘输入时 底部按钮悬浮 在屏幕中间 解决办法:(ps 显示用的 position:fixed )

    xxx{

             position: absolute;

           }

     3、与app交互是转跳页面时 需要确认需求 是否回退时 还需要返回此页面 如果需要则 不能使用 常规 url 转跳 。

     4、待续

原文地址:https://www.cnblogs.com/rufus-hua/p/5649938.html