var input =$('table :input[type="text"]'); for(var i=0;i<input.length;i++){ if(input[i].value==''){ alert("有未填写的文本框,请填写完整!"); return false; } }