--- id: bad87fee1348bd9aec908849 title: Add Elements within Your Bootstrap Wells challengeType: 0 videoUrl: '' localeTitle: 在Bootstrap Wells中添加元素 --- ## Description
现在,我们行的每一列都有几个div元素。这是我们需要去的深度。现在我们可以添加我们的button元素。在每个well div元素中嵌套三个button元素。
## Instructions
## Tests
```yml tests: - text: 在每个div元素中嵌入三个button元素,并且类well 。 testString: 'assert($("div.well:eq(0)").children("button").length === 3 && $("div.well:eq(1)").children("button").length === 3, "Nest three button elements within each of your div elements with class well.");' - text: 你应该总共有6个button元素。 testString: 'assert($("button") && $("button").length > 5, "You should have a total of 6 button elements.");' - text: 确保所有button元素都有结束标记。 testString: 'assert(code.match(/<\/button>/g) && code.match(/
## Challenge Seed
```html

jQuery Playground

```
## Solution
```js // solution required ```