Ajax processing php returns json data example_PHP tutorial

WBOY
Release: 2016-07-13 17:37:18
Original
851 people have browsed it

/-----------test.html---------------/

function ajax_init()
{
    var ajax=false;
    try {
        ajax = new ActiveXObject("Msxml2.XMLHTTP");
    } catch (e) {
        try {
            ajax = new ActiveXObject("Microsoft.XMLHTTP");
        } catch (E) {
            ajax = false;
        }
    }
    if (!ajax && typeof XMLHttpRequest!=undefined) {
        ajax = new XMLHttpRequest();
    }
    return ajax;
}
function post_data()
{
    var url = "/server/xml.php";

    var show_check = document.getElementById("show_check");
    var show_flag = document.getElementById("show_flag");

    var ajax = ajax_init();
    ajax.open("GET", url, true);

    //var img = "";
    ajax.onreadystatechange = function()
    {
        if (ajax.readyState == 4 && ajax.status == 200)
        {
        var ret = ajax.responseText;
            var show_info = eval(ret);
            show_check.innerHTML = show_info[0].no1; // bsd
            show_flag.innerHTML = show_info[0].no2; // wuddy
            //alert("responseXMLs value: " + info[0].firstChild.data);   
        }
       /*else
       {
          show.innerHTML = img;
       }*/
    }
    ajax.send(null);
}

 

/*------------json.php-----------------*/
   /* 这边如果写成     $info = array(no1=>bsd, no2=>wuddy, no3=>xie); */
   /* 同样要把html文件中必成     var show_info = eval([ + ret + ]); 都是返回一个对象 */
    $info = array(array(no1=>bsd, no2=>wuddy, no3=>xie));
    $userinfo = json_encode($info);
    echo $userinfo;
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/486585.htmlTechArticle/-----------test.html---------------/ label onclick="javascript:post_data();"click /label function ajax_init() { var ajax=false; try { ajax = new ActiveXObject("Msxml2.XMLHTTP"); }...
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template