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

23 lines
662B

  1. var BROWSER = {};
  2. if (BROWSER.safari) {
  3. BROWSER.firefox = true;
  4. }
  5. function LoadSuns(ctid, tid) {
  6. if ($DE(ctid).innerHTML.length < 10) {
  7. $DE('icon' + tid).className = 'fa fa-minus-square';
  8. fetch('catalog_do.php?dopost=GetSunLists&cid=' + tid).then(resp => resp.text()).then((d) => {
  9. $DE(ctid).innerHTML = d;
  10. });
  11. } else {
  12. showHide(ctid, tid);
  13. }
  14. }
  15. function showHide(objname, tid) {
  16. if ($DE(objname).style.display == "none") {
  17. $DE('icon' + tid).className = 'fa fa-minus-square';
  18. $DE(objname).style.display = BROWSER.firefox ? "" : "block";
  19. } else {
  20. $DE('icon' + tid).className = 'fa fa-plus-square';
  21. $DE(objname).style.display = "none";
  22. }
  23. }