0

似乎真的无法弄清楚我做错了什么。完全不解。我只是想从这个 xml 打印标题字段

https://www.google.com/calendar/feeds/communications%40doitt.nyc.gov/public/full?max-results=3

这是我的 html 和 jquery

<div id="outputTitle"></div>
<script>
$(function(){
    $.get('https://www.google.com/calendar/feeds/communications%40doitt.nyc.gov/public/full?max-results=3', function(data){
        $(data).find("title").each(function(){
            $("#outputTitle").append($(this)+ "<br />");
        });
    });
});
</script>

这是小提琴

http://jsfiddle.net/sghoush1/teJS3/1/

4

1 回答 1

0

使用 getJSON 并将所需的参数添加到您的 URL。

然后随心所欲地处理数据(在示例中我只是将整个提要打印为 JSON)。--> http://jsfiddle.net/blackjim/teJS3/3/

更多在这里 -->使用 Google Calendar API JSON 输出的示例

// handler function
var handleData = function (data,txt,jqXHR) {
    var feed = data.feed; // your feed is here

    $("#outputTitle").text(JSON.stringify(feed));
};

//    use getJSON and add alt=json-in-script as parameters to your url
$.getJSON('http://www.google.com/calendar/feeds/communications%40doitt.nyc.gov/public/full?alt=json-in-script&callback=?', handleData );
于 2013-07-04T17:14:56.940 回答