Movatterモバイル変換


[0]ホーム

URL:


  1. Tecnologia Web para desenvolvedores
  2. JavaScript
  3. Referência JavaScript
  4. Objetos Globais
  5. String
  6. String.prototype.anchor()

Esta página foi traduzida do inglês pela comunidade.Saiba mais e junte-se à comunidade MDN Web Docs.

View in EnglishAlways switch to English

String.prototype.anchor()

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 thecompatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.

O métodoanchor() cria uma string começando com uma tag inicial<a name="...">, um texto e uma tag final</a>.

Aviso:Não use este método. Ao invés, useDOM APIs. Além disso, a especificação HTML não permite mais que o elemento <a> tenha um atributo"name", portanto, esse método nem mesmo cria uma tag válida.

Sintaxe

str.anchor(name)

Parâmetros

name

Uma string que deve representar o valor do atributoname.

Valor retornado

Uma string começando com uma tag de início<a name="name">, depois o valor da string e, em seguida, uma tag de fim</a>.

Descrição

Não use este método. Ao invés, useDOM APIs. Além disso, a especificação HTML não permite mais que o elemento<a> tenha um atributo"name", portanto, esse método nem mesmo cria uma tag válida.

Exemplos

Usandoanchor()

js
const nome = 'Ricardo';console.log(nome.anchor('https://developer.mozilla.org/pt-BR/)');

irá retornar o seguinte código HTML:

html
'<a name="https://developer.mozilla.org/pt-BR/">Ricardo</a>'

Especificações

Specification
ECMAScript® 2026 Language Specification
# sec-string.prototype.anchor

Compatibilidade com navegadores

Veja também

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp