我已經在javascript/jquery中創建了一個代碼,其中包含特定句柄的推文。如何使用jQuery添加轉推和喜歡的按鈕?
$.getJSON("http://api.twitter.com/1/statuses/user_timeline.json?screen_name="+ handle + "&count=" + noOfTweets + "&include_rts=true&callback=?", function(data) {
//some code
});
這裏是顯示鳴叫
Json.parse(data);
$.each(data, function(i, tweet) {
var buttonString = '<br/><a onclick="retweet('+tweet.id+')">Retweet</a>'
+'<a onclick="favorite('+tweet.id+')">Favorite</a>';
$("#tweets").append($("<li/>").html(tweet.text+" <span class='tweetTime'>--a moment ago.</span>")+buttonString);
}
我現在想轉推和收藏夾按鈕添加到鳴叫的代碼。 爲實現上述功能Twitter的API需要一個POST請求,但jQuery的不具有任何.postJSON()函數 https://dev.twitter.com/docs/api/1/post/statuses/retweet/:id 和 https://dev.twitter.com/docs/api/1/post/favorites/create/:id
所以我應該我轉推和收藏功能,包含哪些內容? 請幫忙。
改爲使用web intents。 任何人都可以說我怎麼可以讓推特的按鈕出現/消失在特定推文的懸停? – Playmaker
使用onclick而不是按鈕在懸停時顯示,我將如何點擊它們! – Playmaker