freeCodeCamp/guide/chinese/certifications/front-end-libraries/jquery/use-jquery-to-modify-the-en.../index.md

23 lines
390 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

---
title: Use jQuery to Modify the Entire Page
localeTitle: 使用jQuery修改整个页面
---
## 使用jQuery修改整个页面
### 问题解释
将`animated`类和`hinge`添加到您的`body`元素中。
#### 相关链接:
* [.addClass](https://api.jquery.com/addClass/e)
### 解:
```javascript
<script>
$("body").addClass("animated hinge");
});
</script>
```