how to use json file in html code

前端 未结 3 1476
执笔经年
执笔经年 2020-11-28 03:47

I have json file mydata.json, and in this file is some json-encoded data.

I want obtain this data in file index.html and process this data

3条回答
  •  悲&欢浪女
    2020-11-28 04:07

    use jQuery's $.getJSON

    $.getJSON('mydata.json', function(data) {
        //do stuff with your data here
    });
    

提交回复
热议问题