查找网址并替换?

发布于 2024-10-17 01:40:30 字数 100 浏览 3 评论 0原文

有什么办法可以做到这一点...用户按下一个按钮,按钮找到所有网址,example.com,并将其替换为sub.example.com

Is there any way I can do this... user presses a button, button finds all urls, example.com, and replaces it with sub.example.com?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

意中人 2024-10-24 01:40:30

如果要替换所有 a.href 属性:

$(function(){
    $('#buttonID').click(function(){
        $('a').each(function(){
            var newHref =  $(this).attr('href').replace('example.com','sub.example.com');
            $(this).attr('href',newHref);
        });
    });
}); 

If you want to replace all a.href attributes:

$(function(){
    $('#buttonID').click(function(){
        $('a').each(function(){
            var newHref =  $(this).attr('href').replace('example.com','sub.example.com');
            $(this).attr('href',newHref);
        });
    });
}); 
神仙妹妹 2024-10-24 01:40:30

试试这个:

$('#replace-button').click(function() { 
    $('a[href="example.com"]').attr('href', 'sub.example.com');
});

为了澄清,这是使用 CSS 属性选择器。该示例会查找 a 标记,其 href 值恰好为“example.com” - 如果您的链接包含 http://www. (或类似的东西)在他们面前,这与他们不匹配。属性选择器还有更多变体,请参考 http://css-tricks.com/attribute-selectors / 为例。

Try this:

$('#replace-button').click(function() { 
    $('a[href="example.com"]').attr('href', 'sub.example.com');
});

To clarify, this is using the CSS attribute selector. The example finds a tags who have an href value of exactly 'example.com' - if your links had http://www. (or something like that) in front of them, this would not match them. There are more variations of the attribute selector, refer to http://css-tricks.com/attribute-selectors/ for examples.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文