Files
2018-10-16 21:32:40 +05:30

20 lines
662 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: Target Elements by Class Using jQuery
localeTitle: Целевые элементы по классам Использование jQuery
---
## Целевые элементы по классам Использование jQuery
* Вы можете найти элементы с селектором класса jQuery. // $ (. className)
* В этом примере он позволяет вам выбирать элементы с классом «.well»,
## Решение
```javascript
<script>
$(document).ready(function() {
$(".well").addClass("animated bounce");
$(".well").addClass("shake");
});
</script>
```