2021-06-15 00:49:18 -07:00
|
|
|
---
|
|
|
|
id: bad87fee1348bd9aeda08826
|
2021-06-26 21:42:30 +05:30
|
|
|
title: Identificare elementi per id usando jQuery
|
2021-06-15 00:49:18 -07:00
|
|
|
challengeType: 6
|
|
|
|
forumTopicId: 18317
|
|
|
|
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-elements-by-id-using-jquery
|
|
|
|
---
|
|
|
|
|
|
|
|
# --description--
|
|
|
|
|
2021-06-26 21:42:30 +05:30
|
|
|
Puoi anche selezionare gli elementi in base ai loro attributi id.
|
2021-06-15 00:49:18 -07:00
|
|
|
|
2021-06-26 21:42:30 +05:30
|
|
|
Prima identifica il tuo `button` con l'id `target3` utilizzando il selettore `$("#target3")`.
|
2021-06-15 00:49:18 -07:00
|
|
|
|
2021-06-26 21:42:30 +05:30
|
|
|
Nota che, proprio come con le dichiarazioni CSS, digiti un `#` prima dell'id.
|
2021-06-15 00:49:18 -07:00
|
|
|
|
2021-06-26 21:42:30 +05:30
|
|
|
Quindi usa la funzione `.addClass()` di jQuery per aggiungere le classi `animated` e `fadeOut`.
|
2021-06-15 00:49:18 -07:00
|
|
|
|
2021-06-26 21:42:30 +05:30
|
|
|
Ecco come far dissolvere l'elemento `button` con l'id `target6`:
|
2021-06-15 00:49:18 -07:00
|
|
|
|
|
|
|
```js
|
|
|
|
$("#target6").addClass("animated fadeOut");
|
|
|
|
```
|
|
|
|
|
|
|
|
# --hints--
|
|
|
|
|
2021-06-26 21:42:30 +05:30
|
|
|
Dovresti selezionare l'elemento `button` con l'`id` di `target3` e usare la funzione jQuery `addClass()` per dargli la classe `animated`.
|
2021-06-15 00:49:18 -07:00
|
|
|
|
|
|
|
```js
|
|
|
|
assert($('#target3').hasClass('animated'));
|
|
|
|
```
|
|
|
|
|
2021-06-26 21:42:30 +05:30
|
|
|
Dovresti selezionare l'elemento con l'id `target3` e usare la funzione jQuery `addClass()` per dargli la classe `fadeOut`.
|
2021-06-15 00:49:18 -07:00
|
|
|
|
|
|
|
```js
|
|
|
|
assert(
|
|
|
|
($('#target3').hasClass('fadeOut') || $('#target3').hasClass('fadeout')) &&
|
|
|
|
code.match(/\$\(\s*.#target3.\s*\)/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(/class.*animated/g));
|
|
|
|
```
|
|
|
|
|
|
|
|
# --seed--
|
|
|
|
|
|
|
|
## --seed-contents--
|
|
|
|
|
|
|
|
```html
|
|
|
|
<script>
|
|
|
|
$(document).ready(function() {
|
|
|
|
$("button").addClass("animated bounce");
|
|
|
|
$(".well").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>
|
|
|
|
```
|
|
|
|
|
|
|
|
# --solutions--
|
|
|
|
|
|
|
|
```html
|
|
|
|
<script>
|
|
|
|
$(document).ready(function() {
|
|
|
|
$("button").addClass("animated bounce");
|
|
|
|
$(".well").addClass("animated shake");
|
|
|
|
$("#target3").addClass("animated fadeOut");
|
|
|
|
});
|
|
|
|
</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>
|
|
|
|
```
|