--- id: bad87fee1348bd9aec908853 title: Add id Attributes to Bootstrap Elements challengeType: 0 videoUrl: '' localeTitle: 将id属性添加到Bootstrap元素 --- ## Description
回想一下,除了类属性之外,您还可以为每个元素赋予一个id属性。每个id必须对特定元素是唯一的,并且每页只使用一次。让我们给一个唯一的ID给我们每一个的div类的元素well 。请记住,你可以给一个元素这样的id: <div class="well" id="center-well">left-well 。给right-well
## Instructions
## Tests
```yml tests: - text: 给你留下well的id left-well 。 testString: 'assert($(".col-xs-6").children("#left-well") && $(".col-xs-6").children("#left-well").length > 0, "Give your left well the id of left-well.");' - text: 给您的权利well的ID right-well 。 testString: 'assert($(".col-xs-6").children("#right-well") && $(".col-xs-6").children("#right-well").length > 0, "Give your right well the id of right-well.");' ```
## Challenge Seed
```html

jQuery Playground

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