使用 jQuery 将链接更改为加载时的锚链接

发布于 2024-10-15 01:40:06 字数 334 浏览 1 评论 0原文

我正在尝试设置我的网页,以便 HTML 具有正常链接,然后它们更改为 DOM 上的锚链接。

到目前为止,我还没有运气,我对使用正则表达式还比较陌生,所以我可能尝试过全部错误的操作。

这是我的 jQuery 代码:

    $(".LINKS").each(function() {

        $(this).attr(
            "src",
            $(this).attr("src",replace('/\/\?page\=*?/ig', "/#"))
        );


    });

有什么建议吗?

I am trying to set up my webpage so that the HTML has normal links and then they change to anchor links on DOM ready.

So far i've had no luck, i'm still relatively new to using regular expressions so I have mos probably tried doing it all wrong.

Heres my jQuery code:

    $(".LINKS").each(function() {

        $(this).attr(
            "src",
            $(this).attr("src",replace('/\/\?page\=*?/ig', "/#"))
        );


    });

Any suggestions?

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

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

发布评论

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

评论(2

海螺姑娘 2024-10-22 01:40:06

html 中的链接是通过 a 节点上的 href 属性而不是 src 完成的。 src 用于 img 节点中的图像 url。

$(".LINKS").each(function() {
    $(this).attr(
        "href",
        $(this).attr("href",replace('/\/\?page\=*?/ig', "/#"))
    );
});

Links in html are done with an href attribute on the a node, not an src. src is for image url in img nodes.

$(".LINKS").each(function() {
    $(this).attr(
        "href",
        $(this).attr("href",replace('/\/\?page\=*?/ig', "/#"))
    );
});
溺孤伤于心 2024-10-22 01:40:06

除了其他人对“href”的评论之外,您还指定了一个字符串而不是正则表达式:

replace('/\/\?page\=*?/ig', "/#")

应该是:

replace(/\/\?page\=*?/ig, "/#")

即去掉第一个参数周围的撇号。

Besides the other guys' comments about "href", you have specified a STRING rather than a REGULAR EXPRESSION:

replace('/\/\?page\=*?/ig', "/#")

should be:

replace(/\/\?page\=*?/ig, "/#")

i.e. get rid of the apostrophes surrounding the first argument.

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