欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

html5中文本框输入去除内容提示

程序员文章站 2022-03-20 19:38:40
...
[导读] 下面来介绍基于HTML5 input标签的新特性 - placeholder 实现在文本框输入内容提示消失效果,有需要的朋友可参考。例1 代码如下复制代码 <p><input type="email" name="email" spellcheck="f

下面来介绍基于HTML5 input标签的新特性 - placeholder 实现在文本框输入内容提示消失效果,有需要的朋友可参考。

例1

代码如下 复制代码

<p><input type="email" name="email" spellcheck="false" placeholder="邮 箱" autofocus tabindex="1" x-webkit-speech></p>

<p><input type="password" name="password" placeholder="密 码" tabindex="2"></p>

以上就是 html5中文本框输入去除内容提示的详细内容,更多请关注其它相关文章!