国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
312B

  1. function checkSubmit(t) {
  2. if (document.addcontent.title.value == "") {
  3. ShowMsg(`${t}不能为空`);
  4. document.addcontent.title.focus();
  5. return false;
  6. }
  7. if (document.addcontent.typeid.value == 0) {
  8. ShowMsg("请您选择文档所属栏目");
  9. return false;
  10. }
  11. }