45fan.com - 路饭网

搜索: 您的位置主页 > 电脑频道 > 编程代码 > 阅读资讯:html input文本框中输入提示功能的方法介绍

html input文本框中输入提示功能的方法介绍

2015-03-04 10:03:16 来源:www.45fan.com 【
html input文本框中提示输入功能的方法介绍如下

对于html5中的属性 < input ="text" placeholder="你想输入的内容" >

非html5可以用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://www.45fan.com/bcdm/9840.html
Tags: input
编辑:路饭网
推广内容
推荐阅读
热门推荐
推荐文章
关于我们 | 联系我们 | 友情链接 | 网站地图 | Sitemap | App | 返回顶部