JSP文本框获得焦点和失去焦点时变色
时间:2010-06-18 来源:fucuihong
function appendit()
{
var nodes = document.getElementsByTagName("INPUT");
for (var i=0; i<nodes.length; i++)
{
var ctype = nodes[i].getAttribute("type");
if (ctype == 'text')
{
nodes[i].onfocus = function () { this.style.backgroundColor='#33FF00'; }
nodes[i].onblur = function () { this.style.backgroundColor='#3366FF'; }
}
}
}
只要在每个页面的BODY改成<BODY onload="appendit();">,再把上述JS(JavaScript)脚本引入即可。
{
var nodes = document.getElementsByTagName("INPUT");
for (var i=0; i<nodes.length; i++)
{
var ctype = nodes[i].getAttribute("type");
if (ctype == 'text')
{
nodes[i].onfocus = function () { this.style.backgroundColor='#33FF00'; }
nodes[i].onblur = function () { this.style.backgroundColor='#3366FF'; }
}
}
}
只要在每个页面的BODY改成<BODY onload="appendit();">,再把上述JS(JavaScript)脚本引入即可。
相关阅读 更多 +