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

1.1 KiB

id title challengeType videoUrl forumTopicId
bad87fee1348bd9aede08830 创建一个表单 0 https://scrimba.com/p/pVMPUv/cmQ3Kfa 16817

--description--

如果想使用 HTML 向服务器提交数据,可以给form添加action属性。

例如:

<form action="/url-where-you-want-to-submit-form-data"></form>

--instructions--

input输入框外层创建一个form表单,然后设置表单的action属性为"https://freecatphotoapp.com/submit-cat-photo"

--hints--

input输入框外层创建一个form表单。

assert(
  $('form') &&
    $('form').children('input') &&
    $('form').children('input').length > 0
);

确保表单的action属性为"https://freecatphotoapp.com/submit-cat-photo"

assert(
  $('form').attr('action') === 'https://freecatphotoapp.com/submit-cat-photo'
);

确保表单有开始标记和结束标记。

assert(
  code.match(/<\/form>/g) &&
    code.match(/<form [^<]*>/g) &&
    code.match(/<\/form>/g).length === code.match(/<form [^<]*>/g).length
);

--solutions--