js监听navigator.userAgent,代码如下:
var user = navigator.userAgentif (user.match(/(iphone os)/i)) {
console.log("isphone")
}else if(user.match(/ipad/i)){
console.log("isipad")
}else if(user.match(/(midp|ucweb|android|windows ce|windows mobile)/i){
console.log("android")
}
1、首先在一个文件里面准备两个自己写的HTML文件以便进行跳转的效果查看。
2、接着可以用location.href来指定要跳转的页面便可。
3、然后在浏览器中点击按钮便可以看到跳转了。
4、如图,此时便会从422a跳到422b了。
5、最后可以直接alert弹出location.href便可以查看到当前页面的地址了,这样就完成了跳转并且登录。