扫码一下
查看教程更方便
anchor() 方法用于创建 HTML 锚。
该方法返回加了 <a> 标签的字符串, 如下所示:
<a name="anchorname">string</a>
语法如下:
string.anchor( anchorname )
anchorname - 必需. 定义锚的名称。
返回具有锚标记的字符串。
所有主流浏览器都支持 anchor 方法。
<html>
<head>
<title>JavaScript String anchor() Method</title>
</head>
<body>
<script type = "text/javascript">
var str = new String("Hello world");
document.write(str.anchor( "myanchor" ));
</script>
</body>
</html>
输出结果:
<a name = "myanchor">Hello world</a>