Movatterモバイル変換


[0]ホーム

URL:


  1. Tecnologia Web para desenvolvedores
  2. APIs da Web
  3. Element
  4. Element.matches()

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

Element.matches()

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨abril de 2017⁩.

O métodoElement.matches() retorna verdadeiro se o elemento puder ser selecionado pela sequência de caracteres específica; caso contrário retorna falso.

Aviso:Diversos navegadores implementam isto, prefixado, sob nome não padronizadomatchesSelector().

Sintaxe

var result = element.matches(selectorString);
  • result contém o valor de retorno true ou false.
  • selectorString é uma string representando o seletor para teste.

Exemplo

html
<ul>  <li>Orange-winged parrot</li>  <li>Philippine eagle</li>  <li>Great white pelican</li></ul><script type="text/javascript">  var birds = document.getElementsByTagName("li");  for (var i = 0; i < birds.length; i++) {    if (birds[i].matches(".endangered")) {      console.log("The " + birds[i].textContent + " is endangered!");    }  }</script>

Isto irá logar "The Philippine eagle is endangered!" para o console, desde que o elemento tenha de fato um atributo de classe com o valorendangered.

Exceções

SYNTAX_ERR

O seletor de string específico é inválido.

Polyfill

Para navegadores que não suportamElement.matches() ouElement.matchesSelector(), mass possuem suporte paradocument.querySelectorAll(), existe um polyfill:

if (!Element.prototype.matches) {    Element.prototype.matches =        Element.prototype.matchesSelector ||        Element.prototype.mozMatchesSelector ||        Element.prototype.msMatchesSelector ||        Element.prototype.oMatchesSelector ||        Element.prototype.webkitMatchesSelector ||        function(s) {            var matches = (this.document || this.ownerDocument).querySelectorAll(s),                i = matches.length;            while (--i >= 0 && matches.item(i) !== this) {}            return i > -1;        };}

Especificações

Specification
DOM
# ref-for-dom-element-matches①

Compatibilidade com navegadores

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp