我有这个针对 JS 的移动 userAgent 测试,但不太确定如何正确嵌套它以扩展测试。
基本上现在它测试是移动设备还是桌面设备,我希望它进一步做的是移动设备,检查哪个移动设备并做某事。
<script type="text/javascript">
if( /Android|iPhone|iPod|iPad|BlackBerry|Windows Phone/i.test(navigator.userAgent) ) {
if ( /Android/i.test(navigator.userAgent) ) {
var url = window.location.href = 'http://www.google.com';
url.show();
}
elseif
if ( /iPhone/i.test(navigator.userAgent) ) {
var url = window.location.href = 'http://www.bing.com';
url.show();
}
}
else
{
}
</script>
我知道上面的内容是错误的,但据我所知,它没有解决。