Blogger Information
Blog 63
fans 1
comment 0
visits 75925
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
获取服务器数据JSON.parse()
桃儿的博客
Original
857 people have browsed it

获取服务器数据JSON.parse()


实例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>获取服务器数据JSON.parse()</title>
</head>
<body>
<button>获取服务器数据</button>
<h3></h3>
<script>
    var btn=document.getElementsByTagName('button').item(0);
    var request=new XMLHttpRequest();
    btn.addEventListener('click',getData,false);
    function getData() {
        request.addEventListener('readystatechange',show,false);
        request.open('get','admin/demo1.php',true);
        request.send(null);
    }
    function show() {
        if(request.readyState===4){
            var h3=document.getElementsByTagName('h3').item(0);
            var obj=JSON.parse(request.responseText);
            console.log(obj);
            h3.innerHTML=obj.name+'单价:'+obj.price+'数量:'+obj.count+'特征:'+obj.feature.color+'朋友:'+obj.friend[2];
            h3.style.color='red';
        }
    }
</script>
</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例


实例

<?php

$json='{
    "name":"小苹果",
    "id":110,
    "price":"8元",
    "count":"10斤",
    "feature":{
        "color":"red",
        "size":"big"
    },
    "friend":["梨","桃","香蕉","西瓜","橘子"]
}';
echo $json;

运行实例 »

点击 "运行实例" 按钮查看在线实例


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post