我有一個像這樣的Json字符串:[{"Row_id":"1","Name":"AmoghEngineers","Category":"Dress","Subcategory":"jeans","District":"7","Location":"India","Plan":"Gold","ProductOrService":"Product","Email":"[email protected]","About":"goodone","Phone":"98675433","Registration_confirmed":"Yes"}]
。解析Json字符串到Html元素
我需要解析這些數據到html字段元素,例如:我想將名稱設置爲輸入字段$("#businessName").val(Name)
。我怎樣才能做到這一點 ?提前致謝 。
讓我試試這個 – Crazyrubixfan 2013-05-04 08:45:47
var obj = jQuery.parseJSON(result); alert(obj [0] .Name)這可以,但在jsonObj上使用索引很好嗎? – Crazyrubixfan 2013-05-04 08:48:13
你有對象數組,所以你需要使用索引,變量的名稱是令人困惑的,它會是jsonObjArray,檢查我更新的答案。 – Adil 2013-05-04 08:49:53