gpt4 book ai didi

jquery - 替换链接属性以防止垃圾邮件

转载 作者:行者123 更新时间:2023-12-01 03:49:22 25 4
gpt4 key购买 nike

我想我可以使用这种简单的方法在 jQuery 中创建低级垃圾邮件过滤器 -

<a class="filter" href="mailto:johndoe[at]nowhere[dot]com">johndoe[at]nowhere[dot]com</a>

$('.filter').each(function() {
$(this).html().replace(('[dot]', '.'));
$(this).html().replace(('[at]', '@'));
});

但是什么也没发生。 native 替换功能似乎无法应对 jQuery。我还尝试使用 val() 和 text() 获取内容。也许这完全是一个不正确的方法,如果是的话,我会很感激一些指示。

最佳答案

使用以下内容:

$('.filter').each(function() {
var that = $(this);

that.attr('href', that.attr('href').replace('[dot]', '.')
.replace('[at]', '@'));

that.html(that.html().replace('[dot]', '.').replace('[at]', '@'));
});

关于jquery - 替换链接属性以防止垃圾邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10375114/

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