问答详情
源自:1-2 使用getJSON()方法异步加载JSON格式数据

jquery-ajax

<html>

<head>

<script type="text/javascript" src="/jquery/jquery.js"></script>

<script type="text/javascript">

$(document).ready(function(){

  $("button").click(function(){

    $.getJSON("/example/jquery/demo_ajax_json.js",function(result){

      $.each(result, function(index, value){

        $("p").append(value +'&nbsp;');

      });

    });

  });

});

</script>

</head>


<body>


<button>获得 JSON 数据</button>

<p></p>


</body>

</html>


提问者:web_東 2018-04-13 01:49

个回答

  • name_yc
    2018-07-17 15:20:36

    写的不错啊,继续努力!