|
热门文章 |
|
|
|
|
指定默认值的实用搜索框 |
来源:中国站长天空 更新时间:2009/12/3 1:20:23 阅读次数: 我要投稿 |
|
<html> <head> <title>指定默认值的实用搜索框</title> <meta http-equiv="content-Type" content="text/html;charset=gb2312"> </head> <body> <!--把下面代码加到<body>与</body>之间--> <form id="form1" name="form1" method="post" action=""> <input name="textfield" type="text" value="请输入关键字!" style="color:#666666" onclick="this.style.color='#ff0000'" onblur="if(this.value == ''){this.value = '请输入关键字!';this.style.color='#666666';}else{this.style.color='#ff0000'}" onfocus="if(this.value == '请输入关键字!')this.value =''"/> </form> </body> </html> |
|
上一篇文章: 漂亮的点击弹出的登陆框下一篇文章: 文本框原内容不清除下通过下拉菜单添加内容 |
|
|