20150318html5-02

表单元素form:让用户输入数据,并提交给服务器

语法:<form action="url" method="提交方法(get/post)">

    各种元素(输入框、下拉列表、文本框、密码框。。。)

    </form>

<input type="*" name="*" >

type:checkbox多选 radio单选

action请求交给的页面

20150318html5-02