在ios7上检测移动版Safari的官方方法是什么?
例如:
navigator.userAgent.match(/(iPod|iPhone|iPad)/)
&& navigator.userAgent.match(/AppleWebKit/)
&& navigator.userAgent.match(/OS 7/)
答案 0 :(得分:23)
试试这个(也检测iPod touch):
navigator.userAgent.match(/(iPad|iPhone|iPod touch);.*CPU.*OS 7_\d/i)
答案 1 :(得分:4)
试试这个
navigator.userAgent.match(/(iPad|iPhone);.*CPU.*OS 7_\d/i)
答案 2 :(得分:0)
/iP(ad|hone|od)/.test(navigator.userAgent)
提供简单的T / F.