--- id: bad87fee1348bd9aec908850 challengeType: 0 forumTopicId: 16657 localeTitle: 给 Bootstrap 按钮添加默认样式 --- ## Description
Bootstrap 还有另外一种属于按钮的 class 属性叫做 btn-default。 为 button 元素增加两个 class: btnbtn-default
## Instructions
## Tests
```yml tests: - text: 将 btn class 添加到所有的 button 元素中。 testString: assert($(".btn").length > 5); - text: 将 btn-default class 添加到每一个 button 元素中。 testString: assert($(".btn-default").length > 5); ```
## Challenge Seed
```html

jQuery Playground

```
## Solution
```html

jQuery Playground

```