json的一点小研究

来源:互联网 发布:社交关系网络量化建模 编辑:程序博客网 时间:2024/05/21 00:20

[html页面的代码]


<script type="text/javascript">

    $(document).ready(function($) {
    var i=0;
    //var arr=['女人','小孩儿','大人','男人']
   $('#btn').click(function() {
     //$('p').html(arr[i++]);
         $.getJSON("a.json", function(json){
           $('p').html(json.employees[i++].firstName);
            //alert("JSON Data: " + json.employees[i++].firstName);
        });
      });
});

  </script>


json代码// 注意 让json文件的保存格式是:xxx.json

0 0