String.prototype.anchor()

概述

已废弃
该特性已经从 Web 标准中删除,虽然一些浏览器目前仍然支持它,但也许会在未来的某个时间停止支持,请尽量不要使用该特性。

anchor() 方法创建一个 <a> HTML 锚元素,被用作超文本靶标(hypertext target)。

语法

str.anchor(name) 

参数

name
一个字符串,表示被创建的标签的  name 属性。

返回值

 包含 <a> HTML元素的一个字符串。

描述

使用 anchor 方法能够以编程方式在一个文档中创建和展现一个锚链接。

语法上来讲,字符串表示你想让用户看到的文本。name 字符串参数表示 <a> 元素的 name 属性。

使用 anchor 方法创建的锚点(anchors)将会成为 document.anchors 数组的元素。

示例

例子:使用 anchor

var myString = "Table of Contents";

document.body.innerHTML = myString.anchor("contents_anchor");

将会输出下面的 HTML:

<a name="contents_anchor">Table of Contents</a>

规范

规范 状态 注释
ECMAScript 2015 (6th Edition, ECMA-262)
String.prototype.anchor
Standard Initial definition. Implemented in JavaScript 1.0.
Defined in the (normative) Annex B for Additional ECMAScript Features for Web Browsers.

浏览器兼容性

We're converting our compatibility data into a machine-readable JSON format. This compatibility table still uses the old format, because we haven't yet converted the data it contains. Find out how you can help!
Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support (Yes) 1.0 (1.7 or earlier) (Yes) (Yes) (Yes)
Feature Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support (Yes) (Yes) 1.0 (1.0) (Yes) (Yes) (Yes)

Gecko-specific notes

Gecko 17开始  " (引号) 被 HTML引用字符 &quot所替代;在字符串中申请命名参数.

相关链接