小蚂蚁 发表于 2021-9-15 12:52:39

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"   type="text" value="请输入你想要输入的内容"/>

https://www.uoften.com/webdesign/xhtml/20180414/68708.html
页: [1]
查看完整版本: html中实现文本框出现提示功能的多种方法