Files
freeCodeCamp/curriculum/challenges/chinese/01-responsive-web-design/responsive-web-design-projects/build-a-survey-form.chinese.md

63 lines
4.1 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
id: 587d78af367417b2b2512b03
title: Build a Survey Form
isRequired: true
challengeType: 3
forumTopicId: 301145
localeTitle: 制作一个调查表格
---
## Description
<section id='description'>
<strong>目标:</strong>使用 <a href='https://codepen.io' target='_blank'>CodePen.io</a> 搭建一个与这个功能上相似的 app<a href='https://codepen.io/freeCodeCamp/full/VPaoNP' target='_blank'>https://codepen.io/freeCodeCamp/full/VPaoNP</a>
在满足以下<a href='https://en.wikipedia.org/wiki/User_story' target='_blank'>需求</a>并能通过所有测试的前提下,你可以根据自己的喜好来美化你的 app。
你可以使用 HTML、JavaScript 以及 CSS 来完成项目。由于目前你只学到了 CSS 课程,所以我们建议你只使用 CSS 来完成这个项目,同时巩固一下你之前所学的内容。你也可以使用 Bootstrap 或者 SASS。我们不推荐你在这个项目中使用其他技术比如 jQurey、React、Angular 或 Vue否则如果在编码中出现问题你需要自行解决。在后续的其他项目中你将有机会使用各种技术栈比如 React。如果你在使用上述推荐的技术栈编码的过程中发现问题请提交给我们来处理。祝你编码愉快
<strong>需求 1</strong>我能看见一个 H1 标签大小<code>id="title"</code>属性的标题。
<strong>需求 2</strong>我能看见一段 P 标签大小且带有<code>id="description"</code>属性的简述文字。
<strong>需求 3</strong>我能看见一个<code>id="survey-form"</code><code>form</code>
<strong>需求 4</strong>在表单元素内,我需要在<code>id="name"</code>的字段中输入我的名字。
<strong>需求 5</strong>在表单元素内,我需要在<code>id="email"</code>的字段中输入邮箱。
<strong>需求 6</strong>如果我输入了格式不正确的邮箱,我将会看见 HTML5 验证错误信息
<strong>需求 7</strong>在表单内,我可以在<code>id="number"</code>的字段中输入数字。
<strong>需求 8</strong>如果我在数字输入框内输入非数字,我将会看见 HTML5 验证错误信息
<strong>需求 9</strong>如果我输入的数字超出了范围(使用<code>min</code><code>max</code>属性定义),我将会看见 HTML5 验证错误信息
<strong>需求 10</strong>对于表单中的名称,邮箱和数字输入框应该使用对应 id 为<code>id="name-label"</code><code>id="email-label"</code><code>id="number-label"</code>的描述标签。
<strong>需求 11</strong>在表单中的名称,邮箱和数字输入框中,我能看到各自的描述文字作为占位符。
<strong>需求 12</strong>在表单元素内,我可以在<code>id="dropdown"</code>的下拉列表中选择一个选项。
<strong>需求 13</strong>在表单元素内,我可以从一组或多组单选按钮中选择一个字段。每组使用<code>name</code>属性进行分组。
<strong>需求 14</strong>在表单元素内,我可以从一系列复选框中选择几个字段,每个复选框都必须具有 value 属性。
<strong>需求 15</strong>在表单元素内,我能看见在最后有个<code>textarea</code>用于附加注释。
<strong>需求 16</strong>在表单元素内,我能看见一个<code>id="submit"</code>的按钮,用于提交我所有的输入。
你可以通过 fork 这个项目 <a href='http://codepen.io/freeCodeCamp/pen/MJjpwO' target='_blank'>CodePen</a> 来构建你的项目,也可以使用此 CDN 链接在任何你喜欢的环境中运行测试:<code>https://gitcdn.link/repo/freeCodeCamp/testable-projects-fcc/master/build/bundle.js</code>
完成项目并通过所有测试后,输入你的项目在 CodePen 上的链接。
完成之后,将你的 URL 提交到相应的项目,并测试通过。
</section>
## Instructions
<section id='instructions'>
</section>
## Tests
<section id='tests'>
```yml
tests: []
```
</section>
## Challenge Seed
<section id='challengeSeed'>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>