企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
## 1.input - 类型 1.文本 ~~~ <input type="text" > ~~~ 2.密码 ~~~ <input type="password"> ~~~ 3.提交 ~~~ // 默认为box-sizing:border-box; <input type="submit"> ~~~ 4.单选框 ~~~ <input type="radio"> ~~~ 5.复选框 ~~~ <input type="checkbox"> <input type="checkbox"> ~~~ ## 2.form 1.label - 为input元素的定义标签 ~~~ <label for="user"> <input type="text" id="user"> ~~~ 2.单选框 - 技术要点,name属性值要一样 ~~~ <input type="radio" name="sex">男 <input type="radio" name="sex">女 ~~~ 3.复选框 - 多选 ~~~ <input type="checkbox"> <input type="checkbox"> ~~~ 4.下拉选框 - select ~~~ <select> <option value="123">123</option> <option value="456">456</option> <option value="789">789</option> <option value="10" selected>10</option> </select> ~~~ 5.文本域 ~~~ <textarea name="" id="" cols="30" rows="10"></textarea> ~~~ 6.特殊字符 ~~~ &nbsp; 空格 &lt < &gt > ~~~ ~~~