码迷,mamicode.com
首页 > Web开发 > 详细

Html5的表单元素

时间:2018-05-01 14:08:20      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:表单元素   orm   col   meta   aaaaaa   创建   tle   doctype   color   

  表单是HTML中获取用户输入的手段,,对于web应用系统及其重要,文字是不能说明问题的;

直接上代码把;

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>创建表单</title>
</head>
<body>
<form>
<input type = "text"><!--空白单行框,-->
<br>
<br>
<input type = "text" value = "我是百度"><!--带字的单行框-->
<br>
<br>
<input type = "text" placeholder="密码"><!--<"密码"字体不占文本框">-->
<br>
<br>
<input type = "text" placeholder="maxlength" maxlength="8"><!--最大能输入的字串长度-->
<br>
<br>
<input type = "text" placeholder="maxlength" size="100"><!--<加宽单行文本框>-->
<br>
<br>
<input type = "text" value="只读文本框" readonly><!--<只读文本框,不可以修改>-->
<br>
<br>
<input type = "password" placeholder="密码">
<br>
<br>
<textarea rows="20">aaaaaaaaaaaa</textarea><!--<多行文本框>-->
</form>
</body>
</html>

Html5的表单元素

标签:表单元素   orm   col   meta   aaaaaa   创建   tle   doctype   color   

原文地址:https://www.cnblogs.com/674001396long/p/8975930.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!