String.prototype.link()

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

link() 方法创建一个 HTML 元素 <a> ,用该字符串作为超链接的显示文本,参数作为指向另一个 URL 的超链接。

语法

str.link(url)

参数

url
任何能够指定 a 标签的  href 属性的字符串;它应当是有效的 URL(相对或绝对),任何  & 字符将会被转义为  &amp;,任何 " 字符将会被转义为  &quot;

返回值

一个带有一个 HTML 元素 <a> 的字符串。

描述

使用 link 方法创建一个超链接 HTML 片段。返回的字符串可以通过 document.writeelement.innerHTML 方法添加到文档中。

使用 link 方法创建的链接将会成为 document.links 数组中的元素。查看 document.links

示例

下例显示一个单词 "MDN" 作为超链接,指向 Mozilla Developer Network。

var hotText = 'MDN';
var URL = 'https://developer.mozilla.org/';

document.write('Click to return to ' + hotText.link(URL));
// Click to return to <a href="https://developer.mozilla.org/">MDN</a>

规范

Specification Status Comment
ECMAScript 2015 (6th Edition, ECMA-262)
String.prototype.link
Standard Initial definition. Implemented in JavaScript 1.0. Defined in the (normative) Annex B for Additional ECMAScript Features for Web Browsers.
ECMAScript Latest Draft (ECMA-262)
String.prototype.link
Draft Defined in the (normative) Annex B for Additional ECMAScript Features for Web Browsers.

浏览器兼容性

参见