<%-- 手机端电脑端判断--%>
        <script type="text/javascript">
    $(document).ready(function () {
        //平台、设备和操作系统
        var system = {
            win: false,
            mac: false,
            xll: false
        };
        //检测平台
        var p = navigator.platform;
        system.win = p.indexOf("Win") == 0;
        system.mac = p.indexOf("Mac") == 0;
        system.x11 = (p == "X11") || (p.indexOf("Linux") == 0);
        //跳转语句
        if (system.win || system.mac || system.xll) {//转向后台登陆页面
            window.location.href = "index.html";
        } else {
            window.location.href = "HomeIndex.aspx";//手机
        }
    });
      
</script>

本文转载:CSDN博客