国内流行的内容管理系统(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.

5 line
171B

  1. function showHide2(objname) {
  2. var obj = $Obj(objname);
  3. if (obj.style.display != 'block') { obj.style.display = 'block' }
  4. else { obj.style.display = 'none'; }
  5. }