识别http链接并创建锚标记

发布于 2024-11-05 18:40:55 字数 114 浏览 1 评论 0原文

我正在尝试解析一些字符串,它嵌入了一些 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 技术交流群。

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

发布评论

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

评论(2

樱娆 2024-11-12 18:40:55

你可以这样做:

$(function(){
    //get the string
    var str = $("#text").html();
    //create good link matching regexp
    var regex = /(https?:\/\/([-\w\.]+)+(:\d+)?(\/([\w\/_\.]*(\?\S+)?)?)?)/g
    // $1 is the found URL in the text
    // str.replace replaces the found url with <a href='THE URL'>THE URL</a>
    var replaced_text = str.replace(regex, "<a href='$1'>$1</a>")
    //replace the contents
    $("#text").html(replaced_text);
});

工作示例

You can do it like this:

$(function(){
    //get the string
    var str = $("#text").html();
    //create good link matching regexp
    var regex = /(https?:\/\/([-\w\.]+)+(:\d+)?(\/([\w\/_\.]*(\?\S+)?)?)?)/g
    // $1 is the found URL in the text
    // str.replace replaces the found url with <a href='THE URL'>THE URL</a>
    var replaced_text = str.replace(regex, "<a href='$1'>$1</a>")
    //replace the contents
    $("#text").html(replaced_text);
});

working example

停顿的约定 2024-11-12 18:40:55

@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/

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