当前位置: 代码迷 >> ASP.NET >> TextBox与CssClass有关问题: .test:focus{background-color : Red}
  详细解决方案

TextBox与CssClass有关问题: .test:focus{background-color : Red}

热度:7443   发布时间:2013-02-26 00:00:00.0
TextBox与CssClass问题: .test:focus{background-color : Red}
我设了TextBox的cssclass为test,请问这样为什么不能实现textbox取得焦点后背景变色?

------解决方案--------------------------------------------------------
取得焦点的事件要在js里捕获的吧
------解决方案--------------------------------------------------------
<input type= "text " id= "Text1 " style= "border:red 1px solid " onfocus= "this.style.backgroundColor= '#f7f7de ';this.style.border= 'green 1px solid '; " onblur= "this.style.backgroundColor= '#FFFFFF ';this.style.border= 'red 1px solid ' " />

------解决方案--------------------------------------------------------
ie 不支持 ,firefox支持
  相关解决方案