[导读] 下面来介绍基于html5 input标签的新特性 - placeholder 实现在文本框输入内容提示消失效果,有需要的朋友可参考。例1 代码如下复制代码 <p>
下面来介绍基于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中文本框输入去除内容提示的详细内容。