第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

刪除嵌套數(shù)組中的某一項(xiàng)

刪除嵌套數(shù)組中的某一項(xiàng)

[{        "title": "parent",        "expanded": true,        "folder": true,        "id": "0",        "children": [          {            "title": "parent[0]",            "expanded": true,            "folder": true,            "id": "1",            "children": [              {"title": "Books",  "id": "2"},              {"title": "Kindle Books",  "id": "3"},              {"title": "Books For Study",  "id": "4"},              {"title": "Audiobooks",  "id":"5"}            ]          },          {            "title": "parent[1]", "id": "6", "folder": true, "children": [            {"title": "Music", "id": "7"},            {"title": "MP3 Downloads", "id": "8"},            {"title": "Musical Instruments & DJ", "id": "9"},            ]          }        ]      }]想根據(jù)id來(lái)刪除數(shù)組中的某一項(xiàng),數(shù)組長(zhǎng)度不確定,是嵌套的,知道用遞歸。。但是不會(huì)寫(xiě),哪位能幫忙寫(xiě)下。。
查看完整描述

1 回答

?
收到一只叮咚

TA貢獻(xiàn)1821條經(jīng)驗(yàn) 獲得超5個(gè)贊

這樣應(yīng)該就可以了,你試試

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<script type="text/javascript">

function call(arr,tag){

  for(var i = arr.length ; i > 0 ; i--){

      if(arr[i-1].id == tag){

        arr.splice(i-1,1);

      }else{

        if(arr[i-1].children){

          call(arr[i-1].children,tag)

        }

      }

  }

}

var arr = [{

'title': 'parent',

'expanded': true,

'folder': true,

'id': '0',

'children': [

  {

    'title': 'parent[0]',

    'expanded': true,

    'folder': true,

    'id': '1',

    'children': [

      {

        'title': 'Books',

        'id': '2'

      },

      {

        'title': 'Kindle Books',

        'id': '3'

      },

      {

        'title': 'Books For Study',

        'id': '4'

      },

      {

        'title': 'Audiobooks',

        'id': '5'

      }

    ]

  },

  {

    'title': 'parent[1]',

    'id': '6',

    'folder': true,

    'children': [

      {

        'title': 'Music',

        'id': '7'

      },

      {

        'title': 'MP3 Downloads',

        'id': '8'

      },

      {

        'title': 'Musical Instruments & DJ',

        'id': '9'

      },

    ]

  }

]

}];

call(arr,2);
console.dir(arr);

</script>
</body>
</html>


查看完整回答
反對(duì) 回復(fù) 2018-10-19
  • 1 回答
  • 0 關(guān)注
  • 760 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)