doulan4939 2016-06-10 14:13
浏览 334

获取存储在HTML元素中的JSON

I have JSON within a HTML element on page that I get using PHP

echo "<div id='json'>" . json_encode($response) . "</div>";

I want to using jQuery simply to log the data to the console (for now) but the only response I get is:

Object { }

Here is my jQuery

jQuery(document).ready(function(){
    var data = jQuery("#json").data();      
    console.log(data);
});

and a sample JSON data response

{
"posts":{
  "attributes":{
     "dfp_post":3,
     "dfp_shortcode":"[dfp_ads id=1383]",
     "wildcard_pos":5,
     "wildcard_shortcode":"[widget id='wp_widget-46']",
     "twitter_id":"@TeamName",
     "twitter_pos":8,
     "facebook_id":"teamname",
     "facebook_pos":5
  },
  "0":{
     "post":{
        "id":3945,
        "pub_date":"2016-05-30 00:00:00",
        "title":"Trio to tour on back of Twickenham win",
        "excerpt":""
     }
  },
  • 写回答

2条回答 默认 最新

  • dotelauv682684 2016-06-10 14:15
    关注

    You need to use text() to get JSON content and then parse it using JSON.parse(). The data() method returns object of all data-* attribute values not the text data.

    jQuery(document).ready(function(){
        var data = JSON.parse(jQuery("#json").text());      
        console.log(data);
    });
    
    评论

报告相同问题?

悬赏问题

  • ¥15 sqlite 附加(attach database)加密数据库时,返回26是什么原因呢?
  • ¥88 找成都本地经验丰富懂小程序开发的技术大咖
  • ¥15 如何处理复杂数据表格的除法运算
  • ¥15 如何用stc8h1k08的片子做485数据透传的功能?(关键词-串口)
  • ¥15 有兄弟姐妹会用word插图功能制作类似citespace的图片吗?
  • ¥200 uniapp长期运行卡死问题解决
  • ¥15 latex怎么处理论文引理引用参考文献
  • ¥15 请教:如何用postman调用本地虚拟机区块链接上的合约?
  • ¥15 为什么使用javacv转封装rtsp为rtmp时出现如下问题:[h264 @ 000000004faf7500]no frame?
  • ¥15 乘性高斯噪声在深度学习网络中的应用