function resets(){ var controls = document.getElementsByTagName('input'); for(var i=0; i<controls.length; i++){ if(controls[i].type=='text'){ controls[i].value=''; } }
}
本文共 235 字,大约阅读时间需要 1 分钟。
function resets(){ var controls = document.getElementsByTagName('input'); for(var i=0; i<controls.length; i++){ if(controls[i].type=='text'){ controls[i].value=''; } }
}
转载于:https://www.cnblogs.com/zhwl/archive/2011/02/26/1965659.html