2

仅针对 iOS 更改 JQM 样式的最佳方法是:

<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />

为了修复这个隐藏的标题?有插件吗?

4

1 回答 1

1

1st)您检测您的客户使用哪个操作系统:

osInfo.ios = navigator.userAgent.match(/(iPhone|iPod|iPad)/); 
osInfo.android =  navigator.userAgent.match(/Android/);
osInfo.blackberry =  navigator.userAgent.match(/BlackBerry/);

2nd)你应用CSS,所以它会固定iOs的位置

if(osInfo.ios)
{
    //something here
}

PS希望我理解你的正确

于 2013-01-29T18:19:18.607 回答