--- id: bad87fee1348bd9aed908626 title: Target the Same Element with Multiple jQuery Selectors required: - link: 'https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.2.0/animate.css' challengeType: 6 videoUrl: '' localeTitle: 使用多个jQuery选择器定位相同的元素 --- ## Description
现在你知道三种定位元素的方法:按类型: $("button") ,按类: $(".btn")和id $("#target1") 。虽然可以在单个.addClass()调用中添加多个类,但是让我们以三种不同的方式将它们添加到同一个元素中。使用.addClass() ,一次只向同一个元素添加一个类,有三种不同的方式:使用类型buttonanimated类添加到所有元素。使用类.btnshake类添加到所有按钮。将btn-primary类添加到id为#target1的按钮。 注意
您应该只定位一个元素,一次只添加一个类。总而言之,您的三个选择器最终会将三个类shakeanimatedbtn-primary#target1
## Instructions
## Tests
```yml tests: - text: 使用$("button")选择器。 testString: 'assert(code.match(/\$\s*?\(\s*?(?:"|")\s*?button\s*?(?:"|")/gi), "Use the $("button") selector.");' - text: 使用$(".btn")选择器。 testString: 'assert(code.match(/\$\s*?\(\s*?(?:"|")\s*?\.btn\s*?(?:"|")/gi), "Use the $(".btn") selector.");' - text: '使用$("#target1")选择器。' testString: 'assert(code.match(/\$\s*?\(\s*?(?:"|")\s*?#target1\s*?(?:"|")/gi), "Use the $("#target1") selector.");' - text: 只为每个三个选择器添加一个类。 testString: 'assert(code.match(/addClass/g) && code.match(/addClass\s*?\(\s*?("|")\s*?[\w-]+\s*?\1\s*?\)/g).length > 2, "Only add one class with each of your three selectors.");' - text: '你的#target1元素应该有animated类, shakebtn-primary 。' testString: 'assert($("#target1").hasClass("animated") && $("#target1").hasClass("shake") && $("#target1").hasClass("btn-primary"), "Your #target1 element should have the classes animatedshake and btn-primary.");' - text: 只使用jQuery将这些类添加到元素中。 testString: 'assert(!code.match(/class.*animated/g), "Only use jQuery to add these classes to the element.");' ```
## Challenge Seed
```html

jQuery Playground

#left-well

#right-well

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