JavaScript字符串 – anchor()方法
描述
此方法创建一个作为超文本目标使用的HTML锚点。
语法
其语法如下所示-
string.anchor(anchorname)
属性详情
anchorname - 为锚点定义名称。
返回值
返回带有锚标记的字符串。
例子
尝试以下示例。
<html>
<head>
<title>JavaScript字符串anchor()方法</title>
</head>
<body>
<script type = "text/javascript">
var str = new String("Hello world");
alert(str.anchor("myanchor"));
</script>
</body>
</html>
输出
<a name = "myanchor">Hello world</a>