把字符串显示为超链接。

语法:
  1. stringObject.link( url );

参数说明:

url - 必需,要链接的 URL。

示例:
  1. var Str = "graybobo",
  2. s = Str.link( 'https://github.com/Graybobo' );
  3. console.log( s );
结果:
  1. >>>
  2. <a href="https://github.com/Graybobo">graybobo</a>