我正在尝试在我的 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>