1500字范文,内容丰富有趣,写作好帮手!
1500字范文 > html-文本框和单选框

html-文本框和单选框

时间:2019-08-26 07:44:01

相关推荐

html-文本框和单选框

<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><title>登录注册</title></head><body><h1>注册</h1><!-- 表单formaction: 表单提交的位置,可以是网站,也可以是一个请求处理地址method: post , get 提交方式get方式提交:我们可以在url中看到我们提交的信息, 不安全, 高效post: 比较安全 , 传输大文件--><form action="1.我的第一个网页.html" method="get"><!-- 文本输入框: input type="text"value="wang洪亮" 默认初始值maxlength="8" 最长输入几个字符size="30" 文本框的长度--><p>名字: <input type="text" name="username" value="wang洪亮" maxlength="8" size="30"></p><!-- 密码框: input type="password" --><p>密码: <input type="password" name="pwd"></p><p>性别:<!-- input type="radio"单选要放到一个组里面,不然两个都能被选中 组用name定义value: 单选框的值name: 表示组checked: 默认选中--><input type="radio" value="boy" name="sex"/>男<input type="radio" value="girl" name="sex" checked/>女</p><p><input type="submit"><input type="reset"></p></form></body></html>

/video/BV1x4411V75C?p=13&spm_id_from=pageDriver

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。