Home > Article > Web Front-end > JS converts URLs into clickable hyperlinks
I was working on a message board project recently, and I needed to convert ordinary text link URLs into clickable hyperlinks. The method I thought of at the time was to directly modify the source code to achieve it, but after searching, I found that there is actually a simpler method that can be easily achieved. For a "lazy person" like me, I will definitely consider it seriously. After testing, I found that the effect is very good. All links can be converted accurately. The key is just a short piece of JS code, and the compatibility is very good. , organized and shared with everyone.
Note: Add id=container in the area where the link needs to be converted
Then put the following code at the bottom of the website
Javascript code