new.js
Upload User: yatiankong
Upload Date: 2014-05-16
Package Size: 5604k
Code Size: 0k
Category:

Applet

Development Platform:

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. }