template_tags.js
上传用户:wenllgg125
上传日期:2020-04-09
资源大小:7277k
文件大小:3k
源码类别:

SCSI/ASPI

开发平台:

Others

  1. if (typeof (closedtags)=='undefined')
  2. {
  3. var closedtags;
  4. }
  5. if (typeof (colorfultags)=='undefined')
  6. {
  7. var colorfultags;
  8. }
  9. function forumhottag_callback(data)
  10. {
  11. var hottag_html = '';
  12. for (var i in data)
  13. {
  14. if (!in_array(data[i].tagid, closedtags))
  15. {
  16.     if(aspxrewrite == 1) {
  17.      hottag_html += '<li><a href="topictag-' + data[i].tagid + '.aspx" target="_blank"';
  18. }
  19. else {
  20.      hottag_html += '<li><a href="tags.aspx?t=topic&tagid=' + data[i].tagid + '" target="_blank"';
  21. }    
  22. if (colorfultags && colorfultags[data[i].tagid])
  23. {
  24.  hottag_html += ' style="color: #' + colorfultags[data[i].tagid].color + '"';
  25. }
  26. hottag_html +='>' + data[i].tagname + '</a><em>(' + data[i].fcount + ')</em></li>';
  27. }
  28. }
  29. $('forumhottags').innerHTML = hottag_html;
  30. }
  31. function spacehottag_callback(data)
  32. {
  33. var hottag_html = '';
  34. for (var i in data)
  35. {
  36. if (!in_array(data[i].tagid, closedtags))
  37. {
  38.     if(aspxrewrite == 1) {
  39.      hottag_html += '<li><a href="spacetag-' + data[i].tagid + '.aspx" target="_blank"';
  40. }
  41. else {
  42.      hottag_html += '<li><a href="tags.aspx?t=spacepost&tagid=' + data[i].tagid + '" target="_blank"';
  43. }    
  44. if (colorfultags && colorfultags[data[i].tagid])
  45. {
  46.  hottag_html += ' style="color: #' + colorfultags[data[i].tagid].color + '"';
  47. }
  48. hottag_html +='>' + data[i].tagname + '</a>(' + data[i].scount + ')</li>';
  49. }
  50. }
  51. $('spacehottags').innerHTML = hottag_html;
  52. }
  53. function photohottag_callback(data)
  54. {
  55. var hottag_html = '';
  56. for (var i in data)
  57. {
  58. if (!in_array(data[i].tagid, closedtags))
  59. {
  60.     if(aspxrewrite == 1) {
  61.      hottag_html += '<li><a href="phototag-' + data[i].tagid + '.aspx" target="_blank"';
  62. }
  63. else {
  64.      hottag_html += '<li><a href="tags.aspx?t=photo&tagid=' + data[i].tagid + '" target="_blank"';
  65. }    
  66. if (colorfultags && colorfultags[data[i].tagid])
  67. {
  68.  hottag_html += ' style="color: #' + colorfultags[data[i].tagid].color + '"';
  69. }
  70. hottag_html +='>' + data[i].tagname + '</a>(' + data[i].pcount + ')</li>';
  71. }
  72. }
  73. $('photohottags').innerHTML = hottag_html;
  74. }
  75. function mallhottag_callback(data)
  76. {
  77. var hottag_html = '';
  78. for (var i in data)
  79. {
  80. if (!in_array(data[i].tagid, closedtags))
  81. {
  82.     if(aspxrewrite == 1) {
  83.      hottag_html += '<li><a href="malltag-' + data[i].tagid + '.aspx" target="_blank"';
  84. }
  85. else {
  86.      hottag_html += '<li><a href="tags.aspx?t=mall&tagid=' + data[i].tagid + '" target="_blank"';
  87. }    
  88. if (colorfultags && colorfultags[data[i].tagid])
  89. {
  90.  hottag_html += ' style="color: #' + colorfultags[data[i].tagid].color + '"';
  91. }
  92. hottag_html +='>' + data[i].tagname + '</a>(' + data[i].pcount + ')</li>';
  93. }
  94. }
  95. $('mallhottags').innerHTML = hottag_html;
  96. }
  97. function getajaxforumhottags()
  98. {
  99. _sendRequest('tools/ajax.aspx?t=getforumhottags', function(d){
  100. try{
  101. eval("(" + d + ")");}catch(e){};
  102. });
  103. }
  104. function getajaxspacehottags()
  105. {
  106. _sendRequest('tools/ajax.aspx?t=getspacehottags', function(d){
  107. try{
  108. eval("(" + d + ")");}catch(e){};
  109. });
  110. }
  111. function getajaxphotohottags()
  112. {
  113. _sendRequest('tools/ajax.aspx?t=getphotohottags', function(d){
  114. try{
  115. eval("(" + d + ")");}catch(e){};
  116. });
  117. }
  118. function getajaxmallhottags()
  119. {
  120. _sendRequest('tools/ajax.aspx?t=getmallhottags', function(d){
  121. try{
  122. eval("(" + d + ")");}catch(e){};
  123. });
  124. }