把字符串显示为超链接。
stringObject.link( url );
url - 必需,要链接的 URL。
var Str = "graybobo", s = Str.link( 'https://github.com/Graybobo' ); console.log( s );
>>> <a href="https://github.com/Graybobo">graybobo</a>