1
我想知道在您輸入「www.example.com」時是否有JavaScript會自動將文本轉換爲鏈接?帶有Javascript/jQuery的自動完成鏈接(contentEditable)
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
});