function appendit()
{
var nodes = document.getElementsByTagName("INPUT");
for (var i=0; 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改成,再把上述JS(JavaScript)脚本引入即可。
阅读(2143) | 评论(0) | 转发(0) |