私はこのようなJsonArrayを持っています。
var json_array = [{ "text": "id", "size": 4}, { "text": "manifesto", "size": 4}, { "text": "also", "size": 4}, { "text": "leasing", "size": 4}, { "text": "23", "size": 4}];
Javascript / jQueryを使用して、このjson_arrayのすべての「text」プロパティを別の配列に取得する方法はありますか?
お気に入り:
var t_array = ["id","manifesto","also"....]