目录 模拟百度搜索框 模拟登陆框 method(get、post) enctype属性 application/x-www-form-urlencoded默认编码方式 multipart/form-data text/plain 表单域 maxlength和size value placeholder readonly和diasbled 单选按钮radio 复选框checkbox 隐藏域hidden 多行文本textarea 列表选择框 select optgroup 按钮控件sumbit、reset、button、image 表单分组fieldset 总结 模拟百度搜索框 <form action= "search.jsp" > <!-- action:提交表单时向何处发送表单中的数据,一般可用#代替 --> <input type= "text" name= "search" > <!-- type:数据类型,name ; 会把提交的数据赋给name里面的值然后提交给后台 --> <input type= "submit" value= "百度一下" > <!-- 类型是submit就是提交的意思 --> </form> 模拟登陆框 method(get、post) <form action= "#" method= "post" > <!-- 表单提交方式有两种