博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
h5新加标签
阅读量:4984 次
发布时间:2019-06-12

本文共 1456 字,大约阅读时间需要 4 分钟。

<!DOCTYPE html>

<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<!-- <form autocomplete="on"><!--自动补全-->
<!--<input type="email" />
<input type="number" min="1" max="10" step="2"/>
<input type="range" min="1" max="30" step="2"/>
<input type="color" />
<input type="date" />
<input type="month" />
<input type="week" />
<input type="tel" />
<input type="url"/>
<input type="submit" value="提交"/>-->
<!--<input type="text" list="tarlist"> 下拉列表,输入字母可以提示信息
<datalist id="tarlist">
<option>beijing</option>
<option>shanghai</option>
<option>xiamen</option>
<option>chongqing</option>
<option>changsha</option>
</datalist>
<input type="text" autofocus="autofocus" />自动获取焦点-->
<!--<form action="index.html" method="post" id="index">
<input type="text" name="username"/>
<input type="submit" />
</form>
<input type="password" form="index"/>提交信息给下一个页面,form后面为下一个页面的id
<form action="index.html" method="post" id="index">
<input type="text" name="username"/>
<input type="text" name="psw" formaction="form1"/>把值提交到id为form1的页面
<input type="submit" />
</form>-->
<form>
<input type="text" required="required"/><!--输入值不能为空,必须有输入值-->
<input type="text" placeholder="请输入用户名" /><!--在输入框中提示该输入什么信息-->
<p contenteditable="true">ergfsss</p><!--可以往里面输入内容-->

<p hidden="hidden">3233</p><!--隐藏-->

<a href="a" tabindex="2">fwdc</a><!--设置tab键选择时默认顺序-->
<a href="a" tabindex="1">vre</a>

</form>

</body>
</html>

转载于:https://www.cnblogs.com/hjsuceess/p/7189795.html

你可能感兴趣的文章
Spring Cloud Eureka 使用 IP 地址进行服务注册
查看>>
Python 包的制作(__init__.py)
查看>>
java内存模型优化建议
查看>>
三十、模块补充
查看>>
流程审批设计
查看>>
别装了,你根本就不想变成更好的人
查看>>
数据库 join
查看>>
AES加密工具类[亲测可用]
查看>>
方法区
查看>>
Django-----ORM
查看>>
ARCGIS部分刷新
查看>>
发 零 食
查看>>
poj3613:Cow Relays(倍增优化+矩阵乘法floyd+快速幂)
查看>>
洛谷P1886 滑动窗口
查看>>
Shell编程(二)Bash中调用Python
查看>>
主动与被动监控 拓扑图组合图 自定义监控
查看>>
SQL总结(一)基本查询
查看>>
PDF分割--可脱离python环境执行,可传参数,可弹窗的PC端小工具
查看>>
cas-client-core单点登录排除不需要拦截的URL
查看>>
OCR技术浅探 : 文字定位和文本切割(2)
查看>>