听起来好像是
有没有一些神奇而简单的方法呢?
if (user agent is iOS) { if (browserRatio >=1.5) { $container.css('min-height','360px'); } else { $container.css('min-height','555px'); } }
解决方法
找到了。
if (navigator.userAgent.match(/(iPod|iPhone|iPad)/)) { if (browserRatio >=1.5) { $container.css('min-height','360px'); } else { $container.css('min-height','555px'); } }