diff options
Diffstat (limited to 'files/pt-br/web/api/document/queryselector/index.html')
-rw-r--r-- | files/pt-br/web/api/document/queryselector/index.html | 107 |
1 files changed, 107 insertions, 0 deletions
diff --git a/files/pt-br/web/api/document/queryselector/index.html b/files/pt-br/web/api/document/queryselector/index.html new file mode 100644 index 0000000000..4489a2e823 --- /dev/null +++ b/files/pt-br/web/api/document/queryselector/index.html @@ -0,0 +1,107 @@ +--- +title: Document.querySelector() +slug: Web/API/Document/querySelector +translation_of: Web/API/Document/querySelector +--- +<div> +<div>{{ ApiRef("DOM") }}</div> +</div> + +<h2 id="Summary" name="Summary">Sumário</h2> + +<p>Retorna o primeiro elemento dentro do documento (usando ordenação em profundidade, pré-ordenada e transversal dos nós do documento) que corresponde ao grupo especificado de seletores.</p> + +<h2 id="Syntax" name="Syntax">Sintaxe<span class="st"> </span></h2> + +<pre><em>element</em> = document.querySelector(<em>selectors</em>);</pre> + +<p>Onde:</p> + +<ul> + <li><code>element</code> é um objeto {{ jsxref("Element")}}.</li> + <li><code>selectors</code> é uma string que contém um ou mais seletores CSS separados por vírgulas.</li> +</ul> + +<h2 id="Example" name="Example">Exemplo</h2> + +<p>Neste exemplo, o primeiro elemento no documento com a classe "<code>myclass</code>" é retornado:</p> + +<pre class="brush: js">var el = document.querySelector(".myclass"); +</pre> + +<h2 id="Notes" name="Notes">Notas</h2> + +<p>Retorna <code>null</code> se nenhum resultado for encontrado; caso contrário, retorna o primeiro elemento correspondente.</p> + +<p>Se o seletor utilizado for um <code>ID</code> e este <code>ID</code> foi erroneamente utilizado várias vezes no documento, ele retorna somente o primeiro elemento correspondente.</p> + +<p>Gera uma exceção <code>SYNTAX_ERR</code> se o grupo de seletores utilizado for inválido.</p> + +<p><code>querySelector()</code> foi introduzido com a API de seletores.</p> + +<h2 id="Browser_Compatibility" name="Browser_Compatibility">Compatibilidade dos navegadores</h2> + +<p>{{CompatibilityTable()}}</p> + +<div id="compat-desktop"> +<table class="compat-table"> + <tbody> + <tr> + <th>Feature</th> + <th>Chrome</th> + <th>Firefox (Gecko)</th> + <th>Internet Explorer</th> + <th>Opera</th> + <th>Safari (WebKit)</th> + </tr> + <tr> + <td>Basic support</td> + <td>1</td> + <td>3.5 (1.9.1)<br> + {{bug(416317)}}</td> + <td>8</td> + <td>10</td> + <td>3.2 (525.3)<br> + {{Webkitbug("16587")}}</td> + </tr> + </tbody> +</table> +</div> + +<div id="compat-mobile"> +<table class="compat-table"> + <tbody> + <tr> + <th>Feature</th> + <th>Android</th> + <th>Firefox Mobile (Gecko)</th> + <th>IE Mobile</th> + <th>Opera Mobile</th> + <th>Safari Mobile</th> + </tr> + <tr> + <td>Basic support</td> + <td>2.1</td> + <td>yes</td> + <td>9</td> + <td>10.0</td> + <td>3.2</td> + </tr> + </tbody> +</table> +</div> + +<h2 id="Specification" name="Specification">Especificação</h2> + +<ul> + <li><a class="external" href="http://www.w3.org/TR/selectors-api/" title="http://www.w3.org/TR/selectors-api/">Selectors API</a></li> +</ul> + +<h2 id="See_also" name="See_also">Veja também:</h2> + +<ul> + <li>{{domxref("document.querySelectorAll()")}}</li> + <li>{{domxref("element.querySelector()")}}</li> + <li>{{domxref("element.querySelectorAll()")}}</li> + <li><a href="/en-US/docs/Code_snippets/QuerySelector" title="en-US/docs/Code snippets/QuerySelector">Code snippets for querySelector</a></li> +</ul> |