我想使用 Ajax 搜索登录,所以我不必刷新页面并使用 jquery 事件这里是代码,但它不起作用:(
$(document).ready(function(){
$("#login").keyup(submitForm);
});
function submitForm()
{
var xhr= new XMLHttpRequest();
xhr.onreadystatechange=function()
{
if (xhr.readyState==4 && xhr.status==200)
{
document.getElementById("zone").innerHTML=xhr.responseText;
}
}
var str="SearchLogin.php?login="+document.getElementById("login").value;
xhr.open("GET",str,true);
xhr.send();
}
欣赏它