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

27 lines
554B

  1. function AddNew()
  2. {
  3. $DE('addTab').style.display = 'block';
  4. }
  5. function CloseTab(tb)
  6. {
  7. $DE(tb).style.display = 'none';
  8. }
  9. function ListAll(){
  10. $DE('editTab').style.display = 'block';
  11. var myajax = new DedeAjax($DE('editTabBody'));
  12. myajax.SendGet('index_body.php?dopost=editshow');
  13. }
  14. function ShowWaitDiv(){
  15. $DE('loaddiv').style.display = 'block';
  16. return true;
  17. }
  18. window.onload = function()
  19. {
  20. var myajax = new DedeAjax($DE('listCount'));
  21. myajax.SendGet('index_body.php?dopost=getRightSide');
  22. };