link 方法语法:参数说明:示例:结果:link 方法 把字符串显示为超链接。 语法: 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>