所以我在我的页面的<head>
中有jQuery,如下所示:
<script language="javascript" type="text/javascript" src="./javascript/jquery-1.2.6.js"></script>
并且我已经非常感谢这段代码将显示一个链接文本,其中显示“读取”,链接将显示我最新的推文状态,它看起来像这样:
jQuery.getJSON('http://twitter.com/status/user_timeline/brianj_smith.json?count=1&callback=?', function(data){
if (data.length > 0) {
var link = jQuery('<a>').attr('http://twitter.com/brianj_smith/status/' + data[0].id)
.text('Read');
});
现在我不是jQuery的专家,所以我不知道如何使上面的jQuery编码工作,并且文本“Read”显示在我的网站上,同时它被链接到我最新推文的状态。
我认为这在大多数情况下都有意义。如果有人能帮助我,这将是伟大的。我知道我之前发了一篇文章,但我对所说的内容并不了解:S
答案 0 :(得分:2)
您可以使用jQuery获取对应包含链接的元素的引用,并附加新创建的link
:
$('div-to-contain-the-link').append(link);
答案 1 :(得分:1)
您只需在现有内容中添加@ Ben的代码:
jQuery.getJSON('http://twitter.com/status/user_timeline/brianj_smith.json?count=1&callback=?', function(data){
$('#tweetlink').append('<a href="http://twitter.com/brianj_smith/status/' + data[0].id_str + '">Read Tweet</a>');
});