js如何获取json值

js如何获取json值

通过循环就可以将json里的值全部获取了;var json = {'name':'xxxxx', 'age':27}for(var name in json){document.w
JavaScript110