使用 Javascript/jQuery 自动完成链接(内容可编辑)

发布于 2024-11-15 17:32:19 字数 385 浏览 2 评论 0原文

我想知道是否有一个 JavaScript 可以在您输入“www.example.com”时自动将文本转换为链接?

HTML

<div id="test">
If I type in www.example.com I want it to become a link automatically.
</div>

Javascript:

$(window).load(function(){
document.getElementById('test').contentEditable = true;
// how 
});

I wonder if there is a JavaScript that automatically turns text into a link when you type in “www.example.com”?

HTML

<div id="test">
If I type in www.example.com I want it to become a link automatically.
</div>

Javascript:

$(window).load(function(){
document.getElementById('test').contentEditable = true;
// how 
});

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

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

发布评论

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

评论(1

我一向站在原地 2024-11-22 17:32:19

查看此答案了解如何用链接替换文本网址,但是我可能会做的是在元素上设置一个 onblur 事件处理程序,然后用 replaceURLWithHTMLLinks() 的结果替换文本。

Check out this answer for how to replace text urls with links, but what I'd probably do is set an onblur event handler on the element, and in that, replace the text with the result of replaceURLWithHTMLLinks().

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