2021-06-15 00:49:18 -07:00
---
id: bad87fee1348bd9bedc08826
2021-07-30 23:57:21 +09:00
title: Mirar elementos de HTML com seletores usando o jQuery
2021-06-15 00:49:18 -07:00
challengeType: 6
forumTopicId: 18319
required:
2021-07-09 21:23:54 -07:00
-
link: 'https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.2.0/animate.css'
2021-06-15 00:49:18 -07:00
dashedName: target-html-elements-with-selectors-using-jquery
---
# --description--
2021-07-29 02:37:39 +09:00
Agora temos uma função `document ready` .
2021-06-15 00:49:18 -07:00
2021-07-16 11:03:16 +05:30
Agora vamos escrever nossa primeira declaração jQuery. Todas as funções do jQuery começam com um `$` , geralmente são referidas como um operador de sinal de dólar ou como bling.
2021-06-15 00:49:18 -07:00
2021-07-30 23:57:21 +09:00
jQuery geralmente selecionar um elemento HTML com um < dfn > seletor< / dfn > , em seguida faz algo a esse elemento.
2021-06-15 00:49:18 -07:00
2021-07-26 23:39:21 +09:00
Por exemplo, vamos fazer todos os nossos elementos `button` quicar. Basta adicionar esse código dentro da sua função pronta:
2021-06-15 00:49:18 -07:00
```js
$("button").addClass("animated bounce");
```
2021-08-20 00:00:51 -07:00
Note que nós já incluímos ambas as bibliotecas jQuery e Animate.css por trás dos panos para que você possa utilizá-las no editor. Então você está usando jQuery para aplicar a classe `bounce` do Animate.css ao seus elementos `button` .
2021-06-15 00:49:18 -07:00
# --hints--
2021-07-16 11:03:16 +05:30
Você deve usar a função `addClass()` do jQuery para dar as classes `animated` e `bounce` ao seus elementos `button` .
2021-06-15 00:49:18 -07:00
```js
assert($('button').hasClass('animated') & & $('button').hasClass('bounce'));
```
2021-07-16 11:03:16 +05:30
Você deve usar apenas jQuery para adicionar essas classes ao elemento.
2021-06-15 00:49:18 -07:00
```js
assert(!code.match(/class.*animated/g));
```
2021-08-20 00:00:51 -07:00
Seu código jQuery deve estar dentro da função `$(document).ready();` .
2021-06-15 00:49:18 -07:00
```js
assert(
code.replace(/\s/g, '').match(/\$\(document\)\.ready\(function\(\)\{\$/g)
);
```
# --seed--
## --seed-contents--
```html
< script >
$(document).ready(function() {
});
< / script >
<!-- Only change code above this line -->
< div class = "container-fluid" >
< h3 class = "text-primary text-center" > jQuery Playground< / h3 >
< div class = "row" >
< div class = "col-xs-6" >
< h4 > #left -well</ h4 >
< div class = "well" id = "left-well" >
< button class = "btn btn-default target" id = "target1" > #target1 </ button >
< button class = "btn btn-default target" id = "target2" > #target2 </ button >
< button class = "btn btn-default target" id = "target3" > #target3 </ button >
< / div >
< / div >
< div class = "col-xs-6" >
< h4 > #right -well</ h4 >
< div class = "well" id = "right-well" >
< button class = "btn btn-default target" id = "target4" > #target4 </ button >
< button class = "btn btn-default target" id = "target5" > #target5 </ button >
< button class = "btn btn-default target" id = "target6" > #target6 </ button >
< / div >
< / div >
< / div >
< / div >
```
# --solutions--
```html
< script >
$(document).ready(function() {
$("button").addClass("animated bounce");
});
< / script >
<!-- Only change code above this line -->
< div class = "container-fluid" >
< h3 class = "text-primary text-center" > jQuery Playground< / h3 >
< div class = "row" >
< div class = "col-xs-6" >
< h4 > #left -well</ h4 >
< div class = "well" id = "left-well" >
< button class = "btn btn-default target" id = "target1" > #target1 </ button >
< button class = "btn btn-default target" id = "target2" > #target2 </ button >
< button class = "btn btn-default target" id = "target3" > #target3 </ button >
< / div >
< / div >
< div class = "col-xs-6" >
< h4 > #right -well</ h4 >
< div class = "well" id = "right-well" >
< button class = "btn btn-default target" id = "target4" > #target4 </ button >
< button class = "btn btn-default target" id = "target5" > #target5 </ button >
< button class = "btn btn-default target" id = "target6" > #target6 </ button >
< / div >
< / div >
< / div >
< / div >
```