分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 教程案例

Html5的表单元素

发布时间:2023-09-06 01:51责任编辑:沈小雨关键词:暂无标签

  表单是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的表单元素

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

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved