我正在尝试检测设备是 iPad 还是 iPhone,但它不适用于模拟器。如果我在 iPad 上的 safari 浏览器中测试它,它就可以工作。有区别吗?它总是对 iphone 使用“else”。
这是我的代码:
var isiPad = navigator.userAgent.match(/iPad/i) != null;
$(document).ready(function(){
if(isiPad)
{
window.location.replace("tab/indexTabStart.html");
}
else {
window.location.replace("smart/indexSmartStart.html");
}
});
请帮帮我谢谢!