html的表单

来源:互联网 发布:软件项目预算模板 编辑:程序博客网 时间:2024/04/27 23:19
<html><body><form action="MyServlet" method="post">用户名:<input type="text"><br/>密码:<input type="password"><br/>apple<input type="checkbox">b<input type="checkbox">c<input type="checkbox"><br/>男<input type="radio" name="sex">女<input type="radio" name="sex"><br/><select><option>a</option><option>b</option><option>c</option></select><input type="button" value="按钮"> <input type="submit" value="提交"></form><textarea cols="30" rows="10">里面的信息</textarea></body></html>

0 0