0

我有 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);

http://jsfiddle.net/nFUVs/

4

1 回答 1

0

您可能想使用 jquery ajax 调用 url

例如

var url = 'http://www.celeritas-solutions.com/pah_brd_v1/productivo/getGroups.php?organizationCode=att&userId1';

$("#common_serachdiv").html(url);
$.getJSON(url, function(data) {
}.done(function( data ) {
    $.each( data.items, function( i, item ) {
        $("#common_serachdiv").html(item.GroupTitle);
    }
}

http://api.jquery.com/jQuery.getJSON/

于 2013-09-09T07:28:45.883 回答