new.js
上传用户:yatiankong
上传日期:2014-05-16
资源大小:5604k
文件大小:0k
源码类别:

Applet

开发平台:

Java

  1. function check(addarticle)
  2. {
  3. if(addarticle.topic.value=="")
  4. {alert("请输入标题!");
  5.  addarticle.topic.focus();
  6.  return false;
  7.  }
  8. if(addarticle.content.value=="")
  9. {alert("请输入内容!");
  10.  addarticle.content.focus();
  11.  return false;
  12.  }
  13. if(addarticle.origin.value=="")
  14. {alert("请输入出处!");
  15.  addarticle.origin.focus();
  16.  return false;
  17.  }
  18. }