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

23 lines
390 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: 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>
```