Skip to content

Commit

Permalink
Merge pull request FreeCodeCampChina#347 from S1ngS1ng/fix/issue-342-…
Browse files Browse the repository at this point in the history
…target-specific-child-jquery

Translation enhancement for Target a Specific Child of an Element Using jQuery
  • Loading branch information
wudifeixue authored Jul 31, 2017
2 parents bf554fa + 6d043ac commit cd4727c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -795,10 +795,10 @@
"description": [
"你已经看到了当用jQuery选择器通过id属性来选取元素的时候是多么方便,但是你不能总是写这么整齐的id。",
"幸运的是,jQuery有一些另外的技巧可以达到同样的效果。",
"jQuery 用CSS选择器来选取元素,<code>target:nth-child(n)</code> CSS选择器允许你按照索引顺序(从1开始)选择目标元素的所有子元素",
"示例:你可以给目标元素的第三个子元素添加bounce class。",
"jQuery 用CSS选择器来选取元素,比如,<code>.target:nth-child(n)</code> CSS 选择器允许你按照索引顺序 (从1开始) 进一步过滤符合 <code>.target</code> 条件的元素",
"示例:给符合 <code>.target</code> 的第三个元素添加 animated 和 bounce class。",
"<code>$(\".target:nth-child(3)\").addClass(\"animated bounce\");</code>",
"任务:确保给目标元素的第二个子元素添加animated和bounce class,你可以通过<code>target</code> class来选获得目标元素"
"任务:请给每个 class 为 well 中的第二个 class 为 <code>target</code> 子元素添加 <code>animated</code> 和 <code>bounce</code> class。注意,你只需要用 <code>.target</code> 选择器和 <code>:nth-child()</code> 就够了"
],
"challengeSeed": [
"fccss",
Expand Down

0 comments on commit cd4727c

Please sign in to comment.