> JavaScript中文手册 > anchor()

定义和用法

anchor() 方法用于创建 HTML 锚。

该方法返回加了 <a> 标签的字符串, 如下所示:

<a name="anchorname">string</a>

语法

string.anchor(name)

参数 描述
name Required. The name of the anchor

浏览器支持

anchor()anchor()anchor()anchor()anchor()

所有主要浏览器都支持 anchor() 方法。

实例

实例

创建 HTML 锚:

<script>

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

</script>
运行一下 »
上一篇:
下一篇: