html中实现文本框出现提示功能的多种方法

  发布时间:2014-07-29 11:07:33   作者:佚名   我要评论
实现文本框出现提示的效果有很多方法,可以用html5中的属性实现,也可以用js做到加css样式,具体的实现过程如下
可以用html5中的属性 < input ="text" placeholder="你想输入的内容" >

也可以用js做到 加css样式

复制代码
代码如下:

<style type="text/css">
.in_search {
border:1 none;
color:#999999;
float:left;
font-size:14px;
height:18px;
line-height:18px;
margin:3px 2px;
width:253px;
}
</style>
<input name="q" class="in_search" onfocus="if(this.value=='请输入你想要输入的内容'){this.value='';}" onblur="if(this.value==''){this.value='请输入你想要输入的内容';}" type="text" value="请输入你想要输入的内容"/>

相关文章

最新评论