asp.net如何离开文本框之后让文本框的颜色和字体颜色全部改变?
后台this.TextBox1.Attributes.Add("onfocus","ChgBgColor(this,'black')");this.TextBox1.At...
后台
this.TextBox1.Attributes.Add("onfocus", "ChgBgColor(this,'black')"); this.TextBox1.Attributes.Add("onkeypress", "ChgTextColor(this,'red ')"); this.TextBox1.Attributes.Add("onBlur", "ChgBgColor1(this,'white')"); this.TextBox1.Attributes.Add("onBlur", "ChgTextColor1(this,'black ')");
js
function ChgBgColor(con, color) { con.style.backgroundColor = color; } function ChgBgColor1(con, color) { con.style.backgroundColor = color; } function ChgTextColor(con, color) { con.style.color = color; } function ChgTextColor1(con, color) { con.style.color = color; }
不能同时改变 求正确方式 在线等 展开
this.TextBox1.Attributes.Add("onfocus", "ChgBgColor(this,'black')"); this.TextBox1.Attributes.Add("onkeypress", "ChgTextColor(this,'red ')"); this.TextBox1.Attributes.Add("onBlur", "ChgBgColor1(this,'white')"); this.TextBox1.Attributes.Add("onBlur", "ChgTextColor1(this,'black ')");
js
function ChgBgColor(con, color) { con.style.backgroundColor = color; } function ChgBgColor1(con, color) { con.style.backgroundColor = color; } function ChgTextColor(con, color) { con.style.color = color; } function ChgTextColor1(con, color) { con.style.color = color; }
不能同时改变 求正确方式 在线等 展开
3个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询