0

我正在尝试从使用重定向到随机帖子的 [blog].tumblr.com/random 选择的 tumblr 帖子中获取第一张图片。

这是我到目前为止所拥有的:

<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script>
<script>
    var link = "http://simplyfoodgifs.tumblr.com/random";

   $.ajax({
    type: "GET",
    url: link,
    dataType: "json"
    }).done(function() {
       $(this).find("img").first().find("src")({
           $('body').append("<img src='" + this + "'/>");
       });
    });
</script>

我还没弄好,有帮助吗?我应该使用 API 吗?我看不到如何在 API 中使用 /random。

4

0 回答 0