javascript怎么通过ajax发送json到服务器端php接收页面?

function test(){
    var json1 = {
        "name":"John",
        "type":"Infinite",
    };
    var result = submit();
    document.getElementById('title').innerHTML = result;
}

function submit(data){
    var xmlhttp;
    window.XMLHttpRequest?xmlhttp=new XMLHttpRequest:xmlhttp=ActiveXObject('MicrosoftXMLHTTP');
    xmlhttp.onreadystatechange = function(){
        if(xmlhttp.readyState == 4 && xmlhttp.status == 200){
            console.log("Everything in Server side goes well!");
            //document.getElementById('title').innerHTML = xmlhttp.responseText;
            return xmlhttp.responseText;
        }
    }
    xmlhttp.open('GET','http://johnkreed.ns1.cscces.net/echo.php?data='+data, true);
    xmlhttp.send();   
}

这种方式将json数据发送到服务器端不知道可不可以,服务器端的PHP我也不知道怎么验证。只知道返回过来的数据在网页上显示“undefined".


正确的应该怎么做?

约翰姜
浏览 3078回答 1
1回答

化龙贝

推荐用 JQuery js太麻烦了$.ajax({             type:"get",             url:"/GetStoreList",             data:{type:"shop"},             dataType:"json",             success:function(data){                                            }         });
打开App,查看更多内容
随时随地看视频慕课网APP