2018-10-10 18:03:03 -04:00
|
|
|
---
|
|
|
|
id: bad87fee1348bd9aedd08830
|
2020-12-16 00:37:30 -07:00
|
|
|
title: 给表单添加提交按钮
|
2018-10-10 18:03:03 -04:00
|
|
|
challengeType: 0
|
2019-12-26 20:05:59 +08:00
|
|
|
videoUrl: 'https://scrimba.com/p/pVMPUv/cp2Nkhz'
|
|
|
|
forumTopicId: 16627
|
2018-10-10 18:03:03 -04:00
|
|
|
---
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
# --description--
|
|
|
|
|
2021-01-08 11:20:48 -08:00
|
|
|
让我们来给表单添加一个 `submit`(提交)按钮。点击提交按钮时,表单中的数据将会被发送到 `action` 属性指定的 URL 上。
|
2020-12-16 00:37:30 -07:00
|
|
|
|
2019-12-26 20:05:59 +08:00
|
|
|
例如:
|
2018-10-10 18:03:03 -04:00
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
`<button type="submit">this button submits the form</button>`
|
|
|
|
|
|
|
|
# --instructions--
|
|
|
|
|
2021-01-08 11:20:48 -08:00
|
|
|
请在表单(`form` 元素)底部创建一个 `button` 元素,将按钮的 `type` 属性值设置为 `submit`,内容文本为 `提交`。
|
2020-12-16 00:37:30 -07:00
|
|
|
|
|
|
|
# --hints--
|
|
|
|
|
2021-01-08 11:20:48 -08:00
|
|
|
表单内部应有一个 `button` 元素。
|
2020-12-16 00:37:30 -07:00
|
|
|
|
|
|
|
```js
|
|
|
|
assert($('form').children('button').length > 0);
|
|
|
|
```
|
|
|
|
|
2021-01-08 11:20:48 -08:00
|
|
|
按钮的 `type` 属性值应为 `submit`。
|
2020-12-16 00:37:30 -07:00
|
|
|
|
|
|
|
```js
|
|
|
|
assert($('button').attr('type') === 'submit');
|
2018-10-10 18:03:03 -04:00
|
|
|
```
|
|
|
|
|
2021-01-08 11:20:48 -08:00
|
|
|
提交按钮的文本应为 `Submit` 。
|
2020-12-16 00:37:30 -07:00
|
|
|
|
|
|
|
```js
|
|
|
|
assert(
|
|
|
|
$('button')
|
|
|
|
.text()
|
|
|
|
.match(/^\s*submit\s*$/gi)
|
|
|
|
);
|
|
|
|
```
|
|
|
|
|
2021-01-08 11:20:48 -08:00
|
|
|
`button` 元素应有结束标签。
|
2020-12-16 00:37:30 -07:00
|
|
|
|
|
|
|
```js
|
|
|
|
assert(
|
|
|
|
code.match(/<\/button>/g) &&
|
|
|
|
code.match(/<button/g) &&
|
|
|
|
code.match(/<\/button>/g).length === code.match(/<button/g).length
|
|
|
|
);
|
2018-10-10 18:03:03 -04:00
|
|
|
```
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
# --solutions--
|
2018-10-10 18:03:03 -04:00
|
|
|
|