anchor() 方法用于创建 HTML 锚。
stringObject.anchor( anchor_name );
anchor_name - 必需。为锚定义名称。
var Str = "KILLHAPPY", n = Str.anchor("anchor"); console.log( n );
>>> <a name="anchor">KILLHAPPY</a>