最新的Web開發教程
 

JavaScript串錨()方法

JavaScript的字符串引用 JavaScript的字符串引用

圍繞創建一個字符串HTML錨:

var txt = "Chapter 10";
txt.anchor("chap10");
alert(txt.anchor("chap10"));
試一試»

定義和用法

anchor()方法不規範,並預期在所有瀏覽器可能無法正常工作。

anchor()方法用於創建HTML錨。

此方法返回嵌入在字符串<a>標籤,就像這樣:

<a name="anchorname">串</A>


瀏覽器支持

方法
anchor()

句法

string.anchor(" name ")

參數值

Parameter Description
name Required. The name of the anchor

技術細節

返回值: 嵌入在一個字符串<a>標籤
JavaScript的版本: 1.0

JavaScript的字符串引用 JavaScript的字符串引用