使用 jQuery 将链接更改为加载时的锚链接
我正在尝试设置我的网页,以便 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
html 中的链接是通过
a
节点上的href
属性而不是src
完成的。src
用于img
节点中的图像 url。Links in html are done with an
href
attribute on thea
node, not ansrc
.src
is for image url inimg
nodes.除了其他人对“href”的评论之外,您还指定了一个字符串而不是正则表达式:
应该是:
即去掉第一个参数周围的撇号。
Besides the other guys' comments about "href", you have specified a STRING rather than a REGULAR EXPRESSION:
should be:
i.e. get rid of the apostrophes surrounding the first argument.