我想知道当您输入“www.example.com”时是否有自动将文本转换为链接的JavaScript?
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
});