查找网址并替换?
有什么办法可以做到这一点...用户按下一个按钮,按钮找到所有网址,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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果要替换所有
a.href
属性:If you want to replace all
a.href
attributes:试试这个:
为了澄清,这是使用 CSS 属性选择器。该示例会查找
a
标记,其href
值恰好为“example.com” - 如果您的链接包含http://www.
(或类似的东西)在他们面前,这与他们不匹配。属性选择器还有更多变体,请参考 http://css-tricks.com/attribute-selectors / 为例。Try this:
To clarify, this is using the CSS attribute selector. The example finds
a
tags who have anhref
value of exactly 'example.com' - if your links hadhttp://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.