Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
function urllinks(str){ return str.replace(/\b((http|https):\/\/\S+)/g,'<a href="$1" target="_blank">$1</a>'); }
このコードは「http」と「https」のテキストのみを置き換えています...しかし、「www」で始まるテキストは置き換えません...
試していません
function urllinks(str){ str = str.replace(/\b(www\.\S+)/g,'http://$1'); return str.replace(/\b((http|https):\/\/\S+)/g,'<a href="$1" target="_blank">$1</a>'); }