最常见的就是type="submit"的按钮触发form的onsubmit事件。
function validateForm(){
if(document.reply.title.value== ""){ //通过form名来获取form
alert("pleaseinput the title!");
document.reply.title.focus();
returnfalse;
}
if(document.forms[0].cont.value== ""){ //通过forms数组获取form
alert("pleaseinput the content!");
document.reply.cont.focus();
returnfalse;
}
returntrue;
}