Jonson寫到:
看不太懂您真正想要的是什麼。
我中文程度太差了嗎?
我猜,您大概是不想要檢查有無輸入「下午審查人數」而已吧!?
就是只要有輸入上午審查人數就好了?
function check() {
if (document.form.textfile1.value ==""){
alert("審查人數:請輸入上午審查人數");
document.form.textfile1.focus();
/*
}else if (document.form.textfile2.value ==""){
alert("審查人數:請輸入下午審查人數");
document.form.textfile2.focus();
*/
}else{
document.form.submit();
}
}