comment.js 350 B

123456
  1. function checkreply()
  2. {if(document.form1.content.value=="")
  3. {document.form1.content.focus();alert("请填写评论内容!");return false;}
  4. if(document.form1.checkcode.value=="")
  5. {document.form1.checkcode.focus();alert("请输入验证码!");return false;}
  6. document.form1.mymps.disabled=true;document.form1.mymps.value="提交中...";return true;}