首页 > 代码库 > 玩转html5(三)---智能表单(form),使排版更加方便

玩转html5(三)---智能表单(form),使排版更加方便

<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
	<title>form表单学习笔记</title>
</head>
<body>
    <!-- 在旧版的html中,form表单与input等元素必须嵌套使用,为了排版方便,在html中提出了新方法 
         表单的多个内容不必非得放到一块,为前台美工提供了非常大的方便-->
          <!-- 首先新建一个form表单,给其定义一个id -->
          <form id="regForm">   
          邮箱 :<input type="email" name="user_email" autofocus="autofocus"/>
          </form>
          <!-- 然后定义一个其它标签,比方input,submit,关联这个id -->
          username:<input name="name" type="text" form="regForm"/>
                  <input type="submit" form="regForm"/>
          <!-- 点击button时,按默认方式提交,能够在地址栏看到提交信息 -->
    <!--  关于html5新增的一些input属性,在我的还有一篇文章这样的专门讲过,给大家个链接,在这里就不在赘述了。 -->
          http://blog.csdn.net/u012116457/article/details/24577509
    <!-- 下来讲一下新增的表单属性   -->
          1.属性:required  值:required  表单拥有该属性表示内容不能为空,为必填项
              <input name="name" type="password" required="required" form="regForm"/>    
          2.属性:placeholder 值:提示文本  表单的提示信息,若存在默认值则不显示
              <!-- 讲这个属性有必要先搞明确旧版本号中是怎么提示默认值的,旧版本号使用的是value属性 -->
                  username:<input type="text" name="name" value=http://www.mamicode.com/"默认值" form="regForm"/>>


请珍惜小编劳动成果,该文章为小编原创,转载请注明出处。

玩转html5(三)---智能表单(form),使排版更加方便