1、首先根据下方的代码,进行输入编辑。
<script type="text/javascript">
try{
if (/Android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)) {
window.location.href="mindex.html"
2、然后继续根据下方的代码,进行输入编辑。
}else{
window.location.href="cindex.html"
}
}catch(e){}
</script>
3、然后这样就可以判断手机还是电脑登陆进入了。
var browser = {versions : function() {
var u = navigator.userAgent, app = navigator.appVersion
return {//移动终端浏览器版本信息
mobile : (!!u.match(/AppleWebKit.*Mobile/) || !!u.match(/Windows Phone/) || !!u.match(/Android/) || !!u.match(/MQQBrowser/)) && !u.match(/iPad/)//是否为移动终端
}
}()
}
if(browser.versions.mobile){
window.location.href="http://www.xxx.com/wap.html"
}
加入index.html。
把如下代码复制,并保存为 test.htm ,用IE浏览器打开它,就可以看到你所需要的效果了。<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/htmlcharset=gb2312" />
<title>无标题文档</title>
<script language="javascript">
function login()
{
if (document.form1.username.value=="123" &&document.form1.password.value=="321")
{
document.write("用户名:张三,密码输入成功登入。")
return false
}
else
{
alert("用户名和/或密码输入错误!")
document.form1.username.focus()
return false
}
}
</script>
</head>
<body>
<form id="form1" name="form1" method="post" action="" onsubmit="javascript:return login()">
<p>
用户名:
<input name="username" type="text" id="username" />
</p>
<p>
密 码:
<input name="password" type="text" id="password" />
</p>
<p> </p>
<p>
<input type="submit" name="Submit" value="提交"/>
<input name="reset" type="reset" id="reset" value="重置" />
</p>
</form>
</body>
</html>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)