前端之家收集整理的这篇文章主要介绍了
javascript搜索框点击文字消失失焦时文本出现,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当获焦时,文本消失,失焦时文本出现
<
Meta charset="utf-8">
无标题文档
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;
}
}
原文链接:https://www.f2er.com/js/57743.html