gpt4 book ai didi

javascript - 将单词变成 jQuery 链接

转载 作者:行者123 更新时间:2023-11-28 20:27:19 25 4
gpt4 key购买 nike

我正在尝试这样做:

<td class="Monthly Status-cell">/fileid=XXXX</td>

显示为

http://www.domain.com/fileid=XXXX

你能告诉我我的代码有什么问题吗?

$('.Status-cell').replaceWith(function() {
var url = $.trim($(this).text());
return '<a href="' + url + '" target="_blank">' + url + '</a>';
});

谢谢!

最佳答案

使用.html()而不是 .replaceWith()。使用 replaceWith 时,您将 td 替换为表格内的 anchor ,这是无效的,并且一定会导致对齐困惑。

$('.Status-cell').html(function(_, currentText) {
var url = "http://www.domain.com" + $.trim(currentText);
return '<a href="' + url + '" target="_blank">' + url + '</a>';
});

Fiddle

关于javascript - 将单词变成 jQuery 链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17139938/

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