freeCodeCamp/curriculum/challenges/chinese/03-front-end-libraries/bootstrap/label-bootstrap-wells.chine...

2.5 KiB
Raw Blame History

id title challengeType videoUrl localeTitle
bad87fee1348bd9aec908854 Label Bootstrap Wells 0 标签Bootstrap Wells

Description

为了清楚起见我们用它们的ID标记我们的两个井。在左侧井的上方在其col-xs-6 div元素内,添加一个带有文本#left-wellh4元素。在右侧井上方,在其col-xs-6 div元素内,添加一个带有文本#right-wellh4元素。

Instructions

Tests

tests:
  - text: 在每个<code>&lt;div class=&quot;col-xs-6&quot;&gt;</code>元素中添加一个<code>h4</code>元素。
    testString: 'assert($(".col-xs-6").children("h4") && $(".col-xs-6").children("h4").length > 1, "Add an <code>h4</code> element to each of your <code>&#60;div class="col-xs-6"&#62;</code> elements.");'
  - text: '一个<code>h4</code>元素应该有<code>#left-well</code>文本。'
    testString: 'assert(new RegExp("#left-well","gi").test($("h4").text()), "One <code>h4</code> element should have the text <code>#left-well</code>.");'
  - text: '一个<code>h4</code>元素应该有<code>#right-well</code>文本。'
    testString: 'assert(new RegExp("#right-well","gi").test($("h4").text()), "One <code>h4</code> element should have the text <code>#right-well</code>.");'
  - text: 确保所有<code>h4</code>元素都有结束标记。
    testString: 'assert(code.match(/<\/h4>/g) && code.match(/<h4/g) && code.match(/<\/h4>/g).length === code.match(/<h4/g).length, "Make sure all your <code>h4</code> elements have closing tags.");'

Challenge Seed

<div class="container-fluid">
  <h3 class="text-primary text-center">jQuery Playground</h3>
  <div class="row">
    <div class="col-xs-6">

      <div class="well" id="left-well">
        <button class="btn btn-default target"></button>
        <button class="btn btn-default target"></button>
        <button class="btn btn-default target"></button>
      </div>
    </div>
    <div class="col-xs-6">

      <div class="well" id="right-well">
        <button class="btn btn-default target"></button>
        <button class="btn btn-default target"></button>
        <button class="btn btn-default target"></button>
      </div>
    </div>
  </div>
</div>

Solution

// solution required