自动获得焦点
txt.focus();
自动选择
txt.select();
离开焦点方法
$("txt").onblur = function () {xxxxxx}
得到焦点方法
$("txt").onfocus = function () {xxxxxx}
下拉菜单的事件
sele.onchange = function(){
switch (this.value) {
case "1" :
document.body.style.backgroundImage = "url(imags/xxx.png)";
break;
case "2" :
doucument.body.style.backgroundImage = "url(images/xxx.png)";
break;
}
}