我正在自定义我的 tumblr 模板,我需要访问包含我的照片集的 iframe 的 URL。当我查看我的不倒翁页面的 html 时,我看到:
<figure class="photoset with-caption">
<div id="photoset_66130132457" class="html_photoset">
<iframe id="photoset_iframe_66130132457" class="photoset" style="border:0px; background-color:transparent; overflow:hidden;" src="http://blog.kazoova.com/post/66130132457/photoset_iframe/kazoova/tumblr_mvtbtjxyAt1t05bsz/0/false" frameborder="0" height="535" scrolling="no" width="100%">
</iframe>
</div>
</figure>
如何使用 tumblr 变量获取 iframe 中 src 的值?
我可以使用以下代码获取单个图像的 URL,但这不是我想要的:
{block:Photoset}
{block:Photos}
{PhotoURL-500}
{/block:Photos}
{/block:Photoset}
我希望照片集有一个类似于 {PhotoURL-500} 的变量,例如 {PhotosetURL-500}。
请帮忙!