在对象中的指定文本两端放置一个有 NAME 属性的 HTML 锚点。
strVariable.anchor(anchorString)
strVariable
必选项。任意的 String 对象或文字。
anchorString
必选项。 想放在 HTML 锚点的 NAME 属性中的文本。
(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/bianchengyuyan/)说明调用 anchor 方法来在 String 对象外创建一个命名的锚点。下面示例说明了 anchor 方法是如何实现这个的:
(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/bianchengyuyan/)var strVariable = "This is an anchor" ;strVariable = strVariable.anchor("Anchor1");
执行完最后一条语句后 strVariable 的值为:
A NAME="Anchor1"This is an anchor/A
不检查该标记是否已经被应用于该字符串。