HTML部分:
函數postRequest(strURL){
var xmlHttp;
if(window.XMLHttpRequest) { // 對於Mozilla、Safari...
var xmlHttp = new XMLHttpRequest();
}
else if(window.ActiveXObject){ // 對| "Microsoft.XMLHTTP");
}
xmlHttp.open('POST', strURL, true);
xmlHttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded ');
xmlHttp.onreadystatechange = function(){
if (xmlHttp.readyState == 4){
updatepage(xmlHttp.responseText);
}
xml }
函數updatepage(str){
if(str=="yes"){
alert("歡迎使用者");
}else{
alert("登入無效!請重試!");
}
}
函數call_login(){
var 使用者名稱= window.document.f1.username.value;
var 密碼= window.document.f1.password.value;
var url = "login.php?username=" + 用戶名 + "&password=" +password ;
postRequest(url); 腳本>
頭>