我們的志工尚未將本文翻譯為 正體中文 (繁體) 版本。加入我們,幫忙翻譯!
您也可以閱讀本文的 English (US) 版本。
Deprecated
This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see the compatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.
The anchor() method creates an <a> HTML anchor element that is used as a hypertext target.
Syntax
str.anchor(name)
Parameters
name- A string representing the
nameattribute of the a tag to be created.
Return value
A string containing an <a> HTML element.
Description
Use the anchor() method to programmatically create and display an anchor in a document.
In the syntax, the text string represents the literal text that you want the user to see. The name parameter string represents the name attribute of the <a> element.
Anchors created with the anchor() method become elements in the document.anchors array.
Examples
Using anchor()
var myString = 'Table of Contents';
document.body.innerHTML = myString.anchor('contents_anchor');
will output the following HTML:
<a name="contents_anchor">Table of Contents</a>
Specifications
| Specification | Status | Comment |
|---|---|---|
| ECMAScript 2015 (6th Edition, ECMA-262) The definition of 'String.prototype.anchor' in that specification. |
Standard | Initial definition. Implemented in JavaScript 1.0. Defined in the (normative) Annex B for Additional ECMAScript Features for Web Browsers. |
Polyfill
if (!String.prototype.anchor)
String.prototype.anchor = function(x){
return '<a name="' + x + '">' + this + '</a>'
}
Browser compatibility
The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
| Desktop | Mobile | Server | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
anchor | Chrome Full support Yes | Edge Full support 12 | Firefox
Full support
1
| IE No support No | Opera Full support Yes | Safari Full support Yes | WebView Android Full support Yes | Chrome Android Full support Yes | Firefox Android Full support 4 | Opera Android Full support Yes | Safari iOS Full support Yes | Samsung Internet Android Full support Yes | nodejs Full support Yes |
Legend
- Full support
- Full support
- No support
- No support
- Deprecated. Not for use in new websites.
- Deprecated. Not for use in new websites.
- See implementation notes.
- See implementation notes.