识别http链接并创建锚标记
我正在尝试解析一些字符串,它嵌入了一些 http 链接。我想使用 jquery 在此字符串中动态创建锚标记,然后将它们显示在前端,以便用户可以单击它们。
有办法做到这一点吗?
谢谢!
I'm trying to parse some string and it has some http links embedded in it. I'd like to dynamically create anchor tags within this string using jquery then display them on the front end so the user can click them.
Is there a way to do this?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以这样做:
工作示例
You can do it like this:
working example
@cfarm ,您可以获取 url 并构建您自己的 html。
解析字符串并开始创建 url 并在 Html 中保留占位符,使用
http://api.jquery。 com/html/
或
http://api.jquery.com/append/
@cfarm , you can grab the urls and construct html of your own.
parse the string and start making the urls and keep a place holder in your Html , use
http://api.jquery.com/html/
or
http://api.jquery.com/append/