JavaScript anchor() 方法
JavaScript String 对象定义和用法
anchor() 方法用于创建 HTML 锚。
该方法返回加了 <a> 标签的字符串, 如下所示:
<a name="anchorname">string</a>
语法
string.anchor(name)
参数 | 描述 |
---|---|
name | Required. The name of the anchor |
浏览器支持
所有主要浏览器都支持 anchor() 方法。
实例
实例
创建 HTML 锚:
<script>
var txt = "Chapter 10";
txt.anchor("chap10");
alert(txt.anchor("chap10"));
</script>
var txt = "Chapter 10";
txt.anchor("chap10");
alert(txt.anchor("chap10"));
</script>
尝试一下 »
JavaScript String 对象
点我分享笔记