仅针对iOS更改JQM样式的最佳方法是:
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
为了解决此问题hidden header?有插件吗?
答案 0 :(得分:1)
1)您检测到您的客户使用哪个操作系统:
osInfo.ios = navigator.userAgent.match(/(iPhone|iPod|iPad)/);
osInfo.android = navigator.userAgent.match(/Android/);
osInfo.blackberry = navigator.userAgent.match(/BlackBerry/);
第二)你申请CSS所以它将确定iOs的位置
if(osInfo.ios)
{
//something here
}
P.S。希望我理解你正确