ajax的基本應用–檢查使用者名稱是否被註冊案例

來源:互聯網
上載者:User

ajax的基本應用--檢查使用者名稱是否被註冊案例,這裡重點介紹ajax的如何使用,我相信大家看了之後可以融會貫通。

參考代碼:

register.php

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html>  <head>           <title>使用者註冊</title>        <meta http-equiv="pragma" content="no-cache">    <meta http-equiv="cache-control" content="no-cache">    <meta http-equiv="expires" content="0">        <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">    <meta http-equiv="description" content="This is my page">    <meta http-equiv="content-type" content="text/html;charset=utf-8" />    <!--    <link rel="stylesheet" type="text/css" href="styles.css">    --><script type="text/javascript">        //建立ajax引擎    function getXMLHttpRequest(){        var xmlHttp;        if(window.ActiveXObject){            // Internet Explorer            xmlHttp= new ActiveXObject("Microsoft.XMLHTTP");        }else{            // Firefox, Opera 8.0+, Safari            xmlHttp= new XMLHttpRequest();        }        return xmlHttp;    }        //驗證使用者    var xmlHttpRequest;    function checkUser(){        xmlHttpRequest=getXMLHttpRequest();        //清除緩衝 get 方式提交/*        var url="/ajax/registerProcess.php?time="+new Date()+"&username="+$("username").value;        //var url="/ajax/registerProcess.php?username="+$("username").value;        xmlHttpRequest.open("get",url,true);        //觸發器        xmlHttpRequest.onreadystatechange=check;        xmlHttpRequest.send(null);*/                //post 方式提交        var url="/ajax/registerProcess.php";        var data="username="+$("username").value;        xmlHttpRequest.open("post",url,true);        //post請求需要加入這句        xmlHttpRequest.setRequestHeader("Content-Type","application/x-www-form-urlencoded");        //觸發器        xmlHttpRequest.onreadystatechange=check;        xmlHttpRequest.send(data);    }    //回呼函數    function check(){        if(xmlHttpRequest.readyState==4){            if(xmlHttpRequest.status=='200'){                //window.alert("OK");                //window.alert("返回使用者名稱"+xmlHttpRequest.responseText);                //$("myres").value=xmlHttpRequest.responseText;                //返回是個對象                /* //處理xml資料                //window.alert(xmlHttpRequest.responseXML);                var mes=xmlHttpRequest.responseXML.getElementsByTagName("mes");                var mes_val=mes[0].childNodes[0].nodeValue;                $("myres").value=mes_val;                */                //處理json資料 使用eval()函數把返回的字串轉成對應的對象                var mes=xmlHttpRequest.responseText;                var mes_obj=eval("("+mes+")");                //window.alert(mes_obj);                $("myres").value=mes_obj.res;            }        }    }    //擷取dom對象    function $(id){        return document.getElementById(id);    }</script>  </head>    <body>    <form action="???" method="post">    使用者名稱字:<input type="text"  name="username1" id="username"><input type="button" onclick="checkUser();" value="驗證使用者名稱">    <input style="border-width: 0;color: red" type="text" id="myres">    <br/>    使用者密碼:<input type="password" name="password"><br>    電子郵件:<input type="text" name="email"><br/>    <input type="submit" value="使用者註冊">    </form>  </body></html>
registerProcess.php

<?php    //這裡兩句話很重要,第一講話告訴瀏覽器返回的資料是xml格式    //header("Content-Type: text/xml;charset=utf-8");    //告訴瀏覽器返回的資料是文字格式設定    header("Content-Type: text/html;charset=utf-8");    //告訴瀏覽器不要快取資料    header("Cache-Control: no-cache");    //接收    //$username=$_GET['username'];    $username=$_POST['username'];        $info="";    if($username=="test1"){        //echo "使用者登入";        //$info.="<res><mes>使用者名稱登入</mes></res>";        $info='{"res":"使用者名稱登入"}';    }else{        //echo "可以註冊";        //$info.="<res><mes>可以註冊</mes></res>";        $info='{"res":"可以註冊"}';    }    echo $info;?>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.