2021-06-15 00:49:18 -07:00
---
id: bad87fee1348bd9aed008826
2021-06-26 21:42:30 +05:30
title: Identificare gli elementi pari usando jQuery
2021-06-15 00:49:18 -07:00
challengeType: 6
forumTopicId: 18318
required:
2021-06-26 21:42:30 +05:30
-
link: 'https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.2.0/animate.css'
2021-06-15 00:49:18 -07:00
dashedName: target-even-elements-using-jquery
---
# --description--
2021-06-26 21:42:30 +05:30
Puoi anche selezionare gli elementi in base alle loro posizioni utilizzando i selettori `:odd` (dispari) o `:even` (pari).
2021-06-15 00:49:18 -07:00
2021-06-26 21:42:30 +05:30
Nota che jQuery è indicizzato a zero, il che significa che il primo elemento di una selezione ha una posizione di 0. Questo può confondere un po' perché, contro-intuitivamente, `:odd` seleziona il secondo elemento (posizione 1), il quarto elemento (posizione 3), e così via.
2021-06-15 00:49:18 -07:00
2021-06-26 21:42:30 +05:30
Ecco come fare riferimento a tutti gli elementi dispari di classe `target` e assegnare loro delle classi:
2021-06-15 00:49:18 -07:00
```js
$(".target:odd").addClass("animated shake");
```
2021-06-26 21:42:30 +05:30
Prova a selezionare tutti gli elementi `target` e a dare loro le classi di `animated` e `shake` . Ricorda che **even** si riferisce alla posizione degli elementi con un sistema a base zero.
2021-06-15 00:49:18 -07:00
# --hints--
2021-06-26 21:42:30 +05:30
Tutti gli elementi `target` che jQuery considera essere pari dovrebbero scuotersi.
2021-06-15 00:49:18 -07:00
```js
assert(
$('.target:even').hasClass('animated') & & $('.target:even').hasClass('shake')
);
```
2021-06-26 21:42:30 +05:30
Dovresti usare il selettore `:even` per modificare questi elementi.
2021-06-15 00:49:18 -07:00
```js
assert(code.match(/\:even/g));
```
2021-06-26 21:42:30 +05:30
Dovresti usare solo jQuery per aggiungere queste classi all'elemento.
2021-06-15 00:49:18 -07:00
```js
assert(
code.match(/\$\(".target:even"\)/g) ||
code.match(/\$\('.target:even'\)/g) ||
code.match(/\$\(".target"\).filter\(":even"\)/g) ||
code.match(/\$\('.target'\).filter\(':even'\)/g)
);
```
# --seed--
## --seed-contents--
```html
< script >
$(document).ready(function() {
$("#target1 ").css("color", "red");
$("#target1 ").prop("disabled", true);
$("#target4 ").remove();
$("#target2 ").appendTo("#right -well");
$("#target5 ").clone().appendTo("#left -well");
$("#target1 ").parent().css("background-color", "red");
$("#right -well").children().css("color", "orange");
$("#left -well").children().css("color", "green");
$(".target:nth-child(2)").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 >
```
# --solutions--
```html
< script >
$(document).ready(function() {
$("#target1 ").css("color", "red");
$("#target1 ").prop("disabled", true);
$("#target4 ").remove();
$("#target2 ").appendTo("#right -well");
$("#target5 ").clone().appendTo("#left -well");
$("#target1 ").parent().css("background-color", "red");
$("#right -well").children().css("color", "orange");
$("#left -well").children().css("color", "green");
$(".target:nth-child(2)").addClass("animated bounce");
$(".target:even").addClass("animated shake");
});
< / 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 >
```