--- id: bad87fee1348bd9aedd08830 challengeType: 0 videoUrl: 'https://scrimba.com/p/pVMPUv/cp2Nkhz' forumTopicId: 16627 title: 给表单添加提交按钮 --- ## Description
让我们来给表单添加一个submit提交按钮,当点击提交按钮时,表单中的数据将会被发送到action属性指定的 URL 上。 例如: <button type="submit">this button submits the form</button>
## Instructions
在表单的底部创建一个button按钮,按钮的type属性值为submit,文本为提交
## Tests
```yml tests: - text: '表单内部应该有一个按钮。' testString: assert($("form").children("button").length > 0); - text: '按钮的type属性值应该为submit。' testString: assert($("button").attr("type") === "submit"); - text: '提交按钮的文本应该为提交。' testString: assert($("button").text().match(/^\s*submit\s*$/gi)); - text: '确保按钮有结束标记。' testString: assert(code.match(/<\/button>/g) && code.match(/