freeCodeCamp/curriculum/challenges/chinese/01-responsive-web-design/basic-html-and-html5/create-a-text-field.chinese.md

1.4 KiB
Raw Blame History

id title challengeType videoUrl localeTitle
bad87fee1348bd9aedf08829 Create a Text Field 0 创建文本字段

Description

现在让我们创建一个Web表单。输入元素是从用户获取输入的便捷方式。您可以创建如下文本输入 <input type="text">请注意, input元素是自动关闭的。

Instructions

在列表下创建text类型的input元素。

Tests

tests:
  - text: 您的应用应具有<code>text</code>类型的<code>input</code>元素。
    testString: 'assert($("input[type=text]").length > 0, "Your app should have an <code>input</code> element of type <code>text</code>.");'

Challenge Seed

<h2>CatPhotoApp</h2>
<main>
  <p>Click here to view more <a href="#">cat photos</a>.</p>

  <a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>

  <p>Things cats love:</p>
  <ul>
    <li>cat nip</li>
    <li>laser pointers</li>
    <li>lasagna</li>
  </ul>
  <p>Top 3 things cats hate:</p>
  <ol>
    <li>flea treatment</li>
    <li>thunder</li>
    <li>other cats</li>
  </ol>


</main>

Solution

// solution required