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

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

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;
}
</style>
<input name="q" class="in_search" onfocus="if(this.value=='请输入你想要输入的内容'){this.value='';}" onblur="if(this.value==''){this.value='请输入你想要输入的内容';}" type="text" value="请输入你想要输入的内容"/>

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/609348.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-14
下一篇 2022-04-14

发表评论

登录后才能评论

评论列表(0条)

保存