我做到这里就不知道什么做,它竟然有两层,大神们帮帮我,让我怎样能调用里面的数据,谢谢
上面是一个和你类似的例子,供参考。
你直接在Aatrox.image.full就能拿到想要的第二层的信息了
代码如下:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> <script src="http://code.jquery.com/jquery-latest.js"></script> </head> <body> <script type="text/javascript"> function test() { var json = [{ "id": "1", "name": "apple", "image": { "id": "image_1", "name": "image_apple", } }, { "id": "2", "name": "orange", "image": { "id": "image_2", "name": "image_orange", } } ]; $.each(json, function(index, obj) { alert("image name is: " + obj.image.name); }); } </script> <input type="button" onclick="test()"> Test </body> </html>
好的谢谢
兄弟你这是英雄联盟玩多了吧?
你下面JS写的可以啊
console.log(data.Aatrox.id);
首先[]是一个数组里面有5个对象{},对象里有id,key等属性,够明白了吧,给个分.
你一定在做什么有趣的东东,可以说说看是什么吗。