最新的Web开发教程
 

JavaScript串锚()方法

JavaScript的字符串引用 JavaScript的字符串引用

围绕创建一个字符串HTML锚:

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

定义和用法

anchor()方法不规范,并预期在所有浏览器可能无法正常工作。

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

此方法返回嵌入在字符串<a>标签,就像这样:

<a name="anchorname">串</A>


浏览器支持

方法
anchor()

句法

string.anchor(" name ")

参数值

Parameter Description
name Required. The name of the anchor

技术细节

返回值: 嵌入在一个字符串<a>标签
JavaScript的版本: 1.0

JavaScript的字符串引用 JavaScript的字符串引用