jquery 嵌套Json检索

dba5bblo  于 12个月前  发布在  jQuery
关注(0)|答案(1)|浏览(94)

JSON格式如下:

{
  "child": {
    "data": 45,
    "child": {
      "data": "12",
      "child": {
        "data": "23",
        "child": {
          "data": "11",
          "child": {
            "data": "56",
            "child": {
              "data": "76",
              "child": {}
            }
          }
        }
      }
    }
  }
}

字符串
我的问题是动态地使用jQuery获取每个子数据并在页面上检索

snz8szmq

snz8szmq1#

创建递归函数

var retriveData = function (child) {
  console.log(child.data)// here you can show on page with some function like div.append
  if(Object.keys(child.child).length>0)
    retriveData(child.child);
}

字符串
就像贝娄一样。

retriveData(data.child);


我使用你的样本数据作为变量data
DEMO

相关问题