当前位置:首页 > 开发教程 > ajax教程 >

用户登录验证Ajax实例详解(2)

时间:2013-04-25 00:22 来源:网络整理 作者:采集侠 收藏

setCookie(ajaxUser,user); setCookie(ajaxPwd,pwd); if(getCookie(ajaxUser)==) { genLoginForm(); alert(您的浏览器必须支持cookies); } else $(content).innerHTML=h2Hello,font color=\red\+user+/font!a href=

setCookie("ajaxUser",user);
setCookie("ajaxPwd",pwd);
if(getCookie("ajaxUser")=="")
{
genLoginForm();
alert("您的浏览器必须支持cookies");
}
else
$("content").innerHTML="<h2>Hello,<font color=\"red\">"+user+"</font>!<a href=\"javascript:logOut();\">logout</a></h2>";
}
}

//显示登录框
function genLoginForm()
{
$("content").innerHTML="<form onsubmit=\"return parseLogin($('user').value,$('pwd').value);\">用户名:<input type=\"text\" id=\"user\" size=\"12\"> 密码:<input type=\"password\" id=\"pwd\" size=\"12\"> <input type=\"submit\" value=\"登录\"></form>";
}
//-->
</script>
</head>

<body onload="init();">
<div id="content"></div>
</body>
</html>
<php
}
>



用户登录验证Ajax实例详解(本教程仅供研究和学习,不代表JAVA中文网观点)


ajax教程阅读排行

最新文章