html中实现⽂本框出现提⽰功能的多种⽅法可以⽤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;
}
html内容文本框</style>
<input name="q" class="in_search" onfocus="if(this.value=='请输⼊你想要输⼊的内容'){this.value='';}"
onblur="if(this.value==''){this.value='请输⼊你想要输⼊的内容';}" type="text" value="请输⼊你想要输⼊的内容"/>

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。