我有 HTML 网页,我想在 HTML 网页中显示 JSON 格式的数据,以便它应该仅在 HTML 网页中对 JSON 数据中的名称进行分组。
这是数据网址
http://www.celeritas-solutions.com/pah_brd_v1/productivo/getGroups.php?organizationCode=att&userId1
我在网上搜索它获取本地JSON数据但是如何使用URL作为我的数据访问数据这里是我得到的本地JSFiddle
var obj = $.parseJSON('{"common_search":{"strBusinessName":"Sun Shine Vision","strAddress":"Amulia St Madhava Pharmacy Jn","intPhone":""}, "cache_table":{"Details":"Speedtrax,Ample\'s Bldg Off Banerji Rd., Amulia St,"}}');
$("#common_serachdiv").html(obj.common_search.strBusinessName);
$("#cache_table").html(obj.cache_table.Details);