js 新手,所以慢慢来:D 需要根据用户使用的操作系统进行重定向。如果 ios 重定向到 x,如果 android 重定向到 y,否则..留在原始地址。我的问题:
这些片段够吗?
<script type="text/javascript"> // <![CDATA[
if ( (navigator.userAgent.indexOf('Android') != -1) ) {
document.location = "y";
} // ]]>
</script>
<script type="text/javascript"> // <![CDATA[
if ((navigator.userAgent.indexOf('iPhone') != -1) || (navigator.userAgent.indexOf('iPod') != -1) || (navigator.userAgent.indexOf('iPad') != -1)) {
document.location = "x";
} // ]]>
</script>
谢谢!:D