手机登陆网页时如何设置自动跳转到另一个页面,js代码怎么写?

JavaScript019

手机登陆网页时如何设置自动跳转到另一个页面,js代码怎么写?,第1张

<script>

function isMobile() {

if((navigator.userAgent.match(/(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i)))

return true

else

return false

}

var urlMobile='http://www.163.com'//手机跳转的页面

if(isMobile() !== false)

window.location.href=urlMobile

</script>

1、直接跳转加参数

<script language="javascript" type="text/javascript">

    window.location.href="login.jsp?backurl="+window.location.href 

    //或者

   window.location.href='http://www.baidu.com'

</script>

2、返回上一次预览界面

<script language="javascript">

    alert("返回")

    window.history.back(-1)

    //标签嵌套:

    <a href="javascript:history.go(-1)">返回上一步</a>

    <a href="<%=Request.ServerVariables("HTTP_REFERER")%>">返回上一步</a>

</script>

3、指定跳转页面 对框架无效

  <script language="javascript">

       window.navigate("top.jsp")

  </script>

4、指定自身跳转页面 对框架无效

  <script language="JavaScript">

          self.location='top.htm'

   </script>

5、指定自身跳转页面 对框架有效

  <script language="javascript">

          alert("非法访问!")

          top.location='xx.aspx'

   </script>

6、按钮式 在button按钮添加 事件跳转

<input name="pclog" type="button" value="GO" onClick="location.href='login.aspx'">

7、在新窗口打开

 <a href="javascript:" onClick="window.open('login.aspx','','height=500,width=611,scrollbars=yes,status=yes')">开新窗口</a>

<script language="JavaScript">

    function mobile_device_detect(url) {

        var thisOS = navigator.platform

        var os = new Array("iPhone", "iPod", "iPad", "android", "Nokia", "SymbianOS", "Symbian", "Windows Phone", "Phone", "Linux armv71", "MAUI", "UNTRUSTED/1.0", "Windows CE", "BlackBerry", "IEMobile")

        for (var i = 0 i < os.length i++) {

            if (thisOS.match(os[i])) {

                window.location = url

            }

        }

        //因为相当部分的手机系统不知道信息,这里是做临时性特殊辨认

        if (navigator.platform.indexOf('iPad') != -1) {

            window.location = url

        }

        //做这一部分是因为Android手机的内核也是Linux

        //但是navigator.platform显示信息不尽相同情况繁多,因此从浏览器下手,即用navigator.appVersion信息做判断

        var check = navigator.appVersion

        if (check.match(/linux/i)) {

            //X11是UC浏览器的平台 ,如果有其他特殊浏览器也可以附加上条件

            if (check.match(/mobile/i) || check.match(/X11/i)) {

                window.location = url

            }

        }

        //类in_array函数

        Array.prototype.in_array = function(e) {

            for (i = 0 i < this.length i++) {

                if (this[i] == e) return true

            }

            return false

        }

    }

    mobile_device_detect("需要跳转的手机网址")

</script>