目前我有这种方法让用户登录我的系统:
<script>
function loginAccess(passwordForm){
var pword = document.getElementById("pin").value;
var uname = document.getElementById("username").value;
if (uname == "Aaron" && pword == "isaloser"){
window.location = "afterHS.html";
return false;
}else{
alert("invalid username or pin")
}};
</script>
但我想要做的是使用xml文件中的详细信息,以便用户可以单击以更改其密码。 到目前为止,这是我的xml:
cust>
<UserId>0001</UserId>
<Name>Rich</Name>
<Password>123</Password>
</cust>
<cust>
<UserId>0002</UserId>
<Name>Aaron</Name>
<Password>isaloser</Password>
</cust>
<cust>
<UserId>0003</UserId>
<Name>fdm</Name>
<Password>456</Password>
</cust>
如何将这两个人结婚,例如,富人可以将他的密码更改为124然后被授予访问权限?