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

15 lines
451B

  1. /**
  2. *
  3. * @version $Id: diy.js 1 22:28 2010年7月20日Z tianya $
  4. * @package DedeBIZ.Administrator
  5. * @copyright Copyright (c) 2020, DedeBIZ.COM
  6. * @license https://www.dedebiz.com/license
  7. * @link https://www.dedebiz.com
  8. */
  9. function showHide2(objname) {
  10. var obj = $Obj(objname);
  11. if (obj.style.display != 'block') { obj.style.display = 'block' }
  12. else { obj.style.display = 'none'; }
  13. }