首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > .NET Framework >

怎样在光标放入文本框中时消除文本框中的内容,光标移出文本框时再显示内容解决方法

2012-01-01 
怎样在光标放入文本框中时消除文本框中的内容,光标移出文本框时再显示内容怎样在光标放入文本框中时消除文

怎样在光标放入文本框中时消除文本框中的内容,光标移出文本框时再显示内容
怎样在光标放入文本框中时消除文本框中的内容,光标移出文本框时再显示内容

[解决办法]

C# code
     <script type="text/javascript"><!--function dianji(){// 文本框点击状态控制(兼容)var Ptr=document.getElementsByTagName("input");for(var i=0;i<Ptr.length;i++) {if(Ptr[i].type=="text"){     Ptr[i].onfocus=function(){     this.style.color="#0d4584";     if (this.value==this.defaultValue){     this.value='';     }     };     Ptr[i].onblur=function(){     this.style.color="";     if (this.value=="") {     this.value=this.defaultValue;     }     };}}}//--></script> 

热点排行