列表

详情


FED1. 表单类型

描述

请依次写出以下类型的输入框。
1. 类型为密码,默认值为"nowcoder"
2. 类型为复选框,且状态为已勾选

原站题解

HTML/CSS/JavaScript 解法, 执行用时: 1680ms, 内存消耗: 77820KB, 提交时间: 2022-02-08

{"css":"","js":"","html":"<form>\n    <!-- 补全代码 -->\n    <input type=\"password\" value=\"nowcoder\">\n    </input>\n    <input type=\"checkbox\" checked=\"checked\">\n    </input>\n</form>","libs":[]}

HTML/CSS/JavaScript 解法, 执行用时: 1684ms, 内存消耗: 77808KB, 提交时间: 2022-02-09

{"css":"","js":"","html":"<form>\n    <input type=\"password\" value=\"nowcoder\">\n  <input type=\"checkbox\" checked>\n\n</form>","libs":[]}

HTML/CSS/JavaScript 解法, 执行用时: 1686ms, 内存消耗: 77812KB, 提交时间: 2022-02-09

{"css":"","js":"","html":"<form>\n    <!-- 补全代码 -->\n  <input type=\"password\" value=\"nowcoder\"> \n  <input type=\"checkbox\" checked>\n</form>","libs":[]}

HTML/CSS/JavaScript 解法, 执行用时: 1688ms, 内存消耗: 77796KB, 提交时间: 2022-02-09

{"css":"","js":"","html":"<form>\n    <input type=\"password\" value=\"nowcoder\"></input>  <!-- 补全代码 -->\n<input type=\"checkbox\" checked></input>\n</form>","libs":[]}

HTML/CSS/JavaScript 解法, 执行用时: 1690ms, 内存消耗: 77772KB, 提交时间: 2022-02-08

{"css":"","js":"","html":"<form>\n    <!-- 补全代码 -->\n    <input type=\"password\" value=\"nowcoder\"> <input type=\"checkbox\" checked>\n    \n</form>","libs":[]}

上一题

下一题