如何从 JavaScript 中的链接中提取文本?
I have following string:
<a href="http://stackoverflow.com" target="_blank">StackOverFlow</a>
How can I extract text (i.e. StackOverFlow) from the string?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
不需要正则表达式:
实际上 用正则表达式解析 HTML 是邪恶的。尽管针对特定情况想出一个表达式可能很容易,但对于不同的字符串可能效果不佳。
No regex required:
Actually parsing HTML with regular expressions is evil. Although it might be easy to come up with an expression for your specific case, it might not work well for a different string.
这是我之前的解决方案,用户添加了更多描述,但这是当前描述的解决方案
That was my solution before, user added more description but this is solution for current description
如果您可以向链接添加
id
,如下所示:“StackOverFlow”,那么您可以获得如下文本:document.getElementById('linkID').innerHTML;
If you can add an
id
to your link like so: `StackOverFlow" then you can get the text like this:document.getElementById('linkID').innerHTML;
http://www.w3schools.com/dom/dom_parser.asp
http://www.w3schools.com/dom/dom_parser.asp