就我的脚本而言: $('.post-body-6ren">
gpt4 book ai didi

php - 将 href 链接转换为图像链接使用缩略图

转载 作者:行者123 更新时间:2023-11-30 23:31:05 26 4
gpt4 key购买 nike

我见过一些不错的脚本,但没有一个是我真正可以使用的。我的网站是 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 但文本链接一直显示。

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

谢谢

最佳答案

我希望你正在寻找的是...

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

关于php - 将 href 链接转换为图像链接使用缩略图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10599240/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com