国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

27 lines
651B

  1. function checkSubmit()
  2. {
  3. if(document.addcontent.title.value==""){
  4. alert("名称不能为空!");
  5. document.addcontent.title.focus();
  6. return false;
  7. }
  8. if(document.addcontent.typeid.value==0){
  9. alert("隶属栏目必须选择!");
  10. return false;
  11. }
  12. if(document.addcontent.typeid.options && document.addcontent.typeid.options[document.addcontent.typeid.selectedIndex].className!='option3')
  13. {
  14. alert("隶属栏目必须选择白色背景的项目!");
  15. return false;
  16. }
  17. if(document.addcontent.vdcode.value==""){
  18. document.addcontent.vdcode.focus();
  19. alert("验证码不能为空!");
  20. return false;
  21. }
  22. }