如何在HTMl页面中显示JSON数据

时间:2013-09-09 07:14:30

标签: html json html5

我有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/

1 个答案:

答案 0 :(得分:0)

您可能希望使用jquery ajax

调用url

E.g。

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/