1

我已经看到了一些好的脚本,但没有一个我真的可以使用。我的网站是 php sql 驱动的,我喜欢用缩略图中的图像更改网站上的链接。我到目前为止的代码是:

<a href="<?php echo $link['url'] ;?>"><?php echo openld_htmlspecialchars($link['title']); ?></a>

就脚本而言,我喜欢:

$('.post-body a').each(
    function(){
        $('<img />').attr('src','http://open.thumbshots.org/image.aspx?url='+encodeURIComponent(this.href)).replaceAll($(this));
    });

我使用了 .replaceAll 函数,但它只显示图片而不是点击链接。我使用了 .insertAfter 但文本链接不断显示。

这可能不是脚本代码的巨大变化,但我似乎没有找到我的问题的答案。

谢谢

4

1 回答 1

0

我希望你正在寻找什么...

$('.post-body a').each(function(){
    $(this).html("<img src='http://open.thumbshots.org/image.aspx?url="+encodeURIComponent(this.href)">");
});
于 2012-05-15T11:00:49.570 回答