html表单

来源:互联网 发布:linux 系统架构 编辑:程序博客网 时间:2024/05/22 03:18
<form action = "表单.html" method = "post">    账号<input type = "text" name = "name" size = "10" maxlength = "5">    <br>        <br>    密码<input type = "password" name = "password" size = "10">    <br>        <br>    性别<input type = "radio" name = "sex" checked = "checked">男<input type = "radio" name = "sex">女    <br>        <br>    爱好<input type = "checkbox" name = "tiyu" checked = "checked">体育<input type = "checkbox" name = "music">音乐    <br>        <br>    自我介绍    <br>    <textarea cols = "35" rows = "10" name = "introduce">    </textarea>    <br>        <br>    地址<select name = "address">        <option>北京</option>        <option>上海</option>        <option>广州</option>        <option>深圳</option>    </select>    <br>        <br>    <input type = "submit" value = "提交">    <input type = "reset" value = "重置">    <input type = "button" value = "按钮"></form>
0 0
原创粉丝点击