日期:2014-05-17 浏览次数:20721 次
<script language="javascript">
function validate(myform){
if(myform.name.value.length==0){
alert("请输入用户名!");
myform.name.focus();
return false;
}
if(myform.email.value.length==0){
alert("留下你的邮箱!");
myform.email.focus();
return false;
}
if(myform.content.value.length==0){
alert("说点什么吧!");
myform.content.focus();
return false;
}
return true;
}
</script>