function check(){ var oName = document.myform.name; if(oName .value.length==0){ alert("不能为空"); oName.focus(); return false; }else{return true;} }