给文本框加上灰色的提示字体

来源:互联网 发布:临沂淘宝客服招聘 编辑:程序博客网 时间:2024/05/17 03:02
html>
<head>
<title>中国站长天空-网页特效-表单特效-给文本框添加灰色提示文字</title>
<meta http-equiv="content-Type" content="text/html;charset=gb2312">
</head>
<body>
<!--把下面代码加到<body>与</body>之间-->
<input type="text" id="key" name="key" value=" 请输入关键词" onFocus="if(value==defaultValue){value='';this.style.color='#000'}" onBlur="if(!value){value=defaultValue;this.style.color='#999'}" style="color:#999999">
</body>
</html>
0 0
原创粉丝点击