<script type="text/javascript">
try{
if (/Android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)) {
window.location.href="m/";
}else{
window.location.href="index.asp";
}
}catch(e){}
</script>
上面的方式会不停的刷新index.asp
改成下面的方式就可以用了
<script type="text/javascript">
try{
if (/Android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)) {
window.location.href="m/";
}else{
}
}catch(e){}
</script>
判断是手机还是电脑在访问网站然后跳转到相应的页面代码