当前位置: 首页 > 网络学院 > 客户端脚本教程 > JavaScript > JavaScript anchor()方法
The anchor() method is used to create an HTML anchor.
anchor()方法可用来建立HTML锚记。
stringObject.anchor(anchorname) |
Parameter 参数 | Description 描述 |
---|---|
anchorname | Required. Defines a name for the anchor 必选。定义锚记的名称 |
In this example we will add an anchor to a text:
在这个举例中我们将给一段文字加上锚记:
<script type="text/javascript"> var txt="Hello world!" </script> |
The code above could be written in plain HTML, like this:
代码输出的结果会解释成为类似这样的HTML:
<a name="myanchor">Hello world!</a> |
anchor()
How to use anchor() create an HTML anchor.
如何使用anchor()来建立一个HTML锚记