window.οnlοad=function(){
var form=document.getElementsByTagName('form')[0];
form.οnsubmit=function(){
//1.收集信息
var username=document.getElementById('username').value;
var password=document.getElementById('password').value;
//2.ajax提交信息
var xhr=new XMLHttpRequest();
var info="username="+username+"&password="+password;
xhr.onreadystatechange=function(){
if (xhr.readyState==4) {
//alert(xhr.responseText);
document.getElementById('result').innerHTML=xhr.responseText;
}
}
xhr.open('post','./form.php');
xhr.setRequestHeader("content-type","application/x-www-form-urlencoded");
xhr.send(info);
return false;//阻止form表单的提交
}
}
form表单post提交
用户名:
密码: