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

24 lines
713B

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