webview ios页面顶部提高的问题

来源:互联网 发布:mac最好的输入法 编辑:程序博客网 时间:2024/05/21 21:47

前提

在做页面的时候,用 webview 嵌入到页面中

安卓状况很好,但是我们的ios 顶部提高了很多。和顶部提示栏重合在一起。

效果:

这里写图片描述

我以为是我使用了移动效果引起的。原来是ios端页面就是这样的。

所以我就对ios端做了兼容

  if (/(iPhone|iPad|iPod|iOS)/i.test(navigator.userAgent)) {    document.getElementsByClassName("ios_box")[0].style.display = "block";    $("#search .commodity, #search .Gallery").css("top", "318px");    $("#sc_shade").css("top", "318px");    $("#search .sc_main").css("padding-top", "318px");} else {    document.getElementsByClassName("ios_box")[0].style.display = "none";    $("#search .commodity, #search .Gallery").css("top", "250px");    $("#sc_shade").css("top", "250px");    $("#search .sc_main").css("padding-top", "250px");}
原创粉丝点击