查找特定 div 中的 URL 并使它们可点击

发布于 2024-10-31 01:48:47 字数 581 浏览 1 评论 0原文

可能的重复:
用 HTML 链接替换文本中的 URL

我很想知道这是否是可能的。在我的网络应用程序中,我有一个“注释”部分(基本上是一个

-> 输入 Note =“这是一次很棒的会议,客户提到要查看 http://www.example.com "

因此,请记下该注释并找到 URL,并在将注释提交到数据库后将其设置为可点击,

我不确定使用 jQuery 是否最好。解决方案或者我是否应该使用服务器端脚本或类似的东西,

我们始终感谢您的帮助! 干杯。

Possible Duplicate:
Replace URLs in text with HTML links

I am curious to know if this is possible. In my web app, I have a 'notes' section (basically a single <textarea>. and when the user is inputting information I would like it if there could be a 'search' function to find if the user input a URL into the 'note'.

IE->Enter Note = "This was a great meeting, the client mentioned to look at http://www.example.com "

So take that Note and find the URLS and make them CLICKABLE after they submit the note to the DB.

I am not sure if using jQuery would best the best solution or if I should use a server side script or something of that nature.

Your help is always appreciated!!
Cheers.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

黯然#的苍凉 2024-11-07 01:48:47

通过js中的简单正则表达式:

note = note.replace(/(https?\S*)/g, '<a href="$1">$1</a>');

via a simple regex in js:

note = note.replace(/(https?\S*)/g, '<a href="$1">$1</a>');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文