function b(){
var c=a();
if(c==true){
window.location=' ';
}
}
function a(){
var name=document.getElementById('username').value;
var password=document.getElementById('pwd').value;
if(username=='aaa'&&pwd=='123'){
return true;
}else{
alert("您的输入有误");
return false;
}
}
<form > 帐号:<input type="text" name="username" id="usernameId" />
<br>密码:<input type="password" name="pwd" id="pwdId" /><br>
<input type="button" onclick="b();" value="登录" />
<input type="reset" value="重置" />
</form>
现在,想把 username 和 pwd 传给 servlet 应该在 window.location=' '; 里面,添加什么?
慕慕森
梦里花落0921