0

我正在尝试在我的 tumblr 帖子中实现“最新”小部件。到目前为止,我已经能够从这篇文章(http://stackoverflow.com/questions/5617378/how-to-display-a-link-to-my-latest-tumblr -post-using-javascript)。我想知道如何将 插入{title}到 xxx 中,以便链接显示最近帖子的标题。

我想我需要使用 .append 或 .html,但我不知道该怎么做。有人可以帮我吗。

脚本:

$.getJSON('http://brianjsmith.tumblr.com/api/read/json?callback=?',
function(response) {
   $('#myLink').attr('href',response.posts[0].title);
});

html:

<a id=#myLink>Most recent post {title}</a>
4

2 回答 2

2
$('#myLink').attr('href',response.posts[0].url).text(response.posts[0].title);

更新: 检查响应后,title除了regular-title.

$('#myLink').attr('href',response.posts[0].url).text(response.posts[0]['regular-title']);
于 2012-06-18T03:58:47.847 回答
0
$("#myLink").html('Most recent post' + response.posts[0].title)
于 2012-06-18T04:00:14.093 回答