码迷,mamicode.com
首页 > 编程语言 > 详细

javascript搜索框点击文字消失

时间:2014-09-17 23:06:02      阅读:326      评论:0      收藏:0      [点我收藏+]

标签:color   io   java   ar   cti   on   c   html   ad   

javascript第一记

当获焦时,文本消失,失焦时文本出现

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
</head>

<body>
<input id="text" type="text" value="点我就消失"/>
<script>
var oText=document.getElementById("text");
var onoff=true;
oText.color="#000";
oText.onfocus=function(){
if(onoff){
this.value="";
this.color="red";
onoff=false;
}
}

oText.onblur=function(){
if(this.value==‘‘){
this.color="#000";
this.value="点我就消失";
onoff=true;
}
}
</script>
</body>
</html>

javascript搜索框点击文字消失

标签:color   io   java   ar   cti   on   c   html   ad   

原文地址:http://www.cnblogs.com/xurui01/p/3978119.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!