在對象中的指定文本兩端放置一個有 NAME 屬性的 HTML 錨點。
strVariable.anchor(anchorString)
strVariable
必選項。任意的 String 對象或文字。
anchorString
必選項。 想放在 HTML 錨點的 NAME 屬性中的文本。
調用 anchor 方法來在 String 對象外創建一個命名的錨點。下面示例說明了 anchor 方法是如何實現這個的:
var strVariable = "This is an anchor" ;
strVariable = strVariable.anchor("Anchor1");
執行完最後一條語句後 strVariable 的值為:
<A NAME="Anchor1">This is an anchor</A>
不檢查該標記是否已經被應用於該字符串。