上下文:我試圖編寫一個javascript函數來像tumblr上的某個帖子,基於這個link。我嘗試使用ajax調用而不是更改iframe的源,但它不起作用。當然,更改iframe的來源是有效的。HTML,Javascript:ajax調用和改變iframe的來源之間的區別
那麼,有什麼不同,使這不工作?
$baseUrl = 'http://tumblr.com/like/';
function LikePost($postID, $reblogUrl)
{
/*
http://www.tumblr.com/<command>/<oauthId>?id=<postId>
<command>: like or unlike
<oauthId>: last eight characters of {ReblogURL}
<postId>: {PostID}
Exemple of Url
http://www.tumblr.com/like/fGKvAJgQ?id=16664837215
*/
$oauthId = $reblogUrl.substring($reblogUrl.length - 8, $reblogUrl.length);
$likeUrl = $baseUrl + $oauthId + '?id=' + $postID;
$.ajax({
url: $likeUrl,
type:'POST'
});
}
好的,謝謝你的快速響應。我會將它標記爲答案(8分鐘後,哈哈) – gdube