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

SCSI/ASPI

开发平台:

Others

  1. function getpostinfo(tid)
  2. {
  3. if($('msgtbody_'+tid).style.display=='none')
  4. {
  5. _sendRequest('tools/ajax.aspx?t=getpostinfo', getpostinfo_callback, true, 'tid='+ tid);
  6. }
  7. else
  8. {
  9. $('msgtbody_'+tid).style.display='none';
  10. }
  11. }
  12. function getpostinfo_callback(doc)
  13. {
  14.    var err = doc.getElementsByTagName('error');
  15. if (err[0] != null && err[0] != undefined)
  16. {
  17. if (err[0].childNodes.length > 1) {
  18. alert(err[0].childNodes[1].nodeValue);
  19. } else {
  20. alert(err[0].firstChild.nodeValue);    
  21. }
  22. return;
  23. }
  24. else
  25. {
  26.         $('msgtbody_'+getSingleNodeValue(doc, 'tid')).style.display='';
  27.         $('msg_'+getSingleNodeValue(doc, 'tid')).innerHTML=getSingleNodeValue(doc,'message');
  28. return;
  29. }
  30. }
  31. function audittopic(tidlist,mod,formid,pm){
  32. var str='modcp.aspx?operation=audittopic&topicidlist='+tidlist +'&mod_'+tidlist+'='+mod+'&pm_'+tidlist+'='+pm;
  33. postoperation(str,formid)
  34. }
  35. function auditpost(pid,formid,tid,tableid){
  36. var mod = getradiovalue('mod_' + pid);
  37. var pm = $('pm_' + pid).value;
  38.   var str = ['modcp.aspx?operation=auditpost&tidlist=',tid,'&tableid=',tableid,'&pidlist=',pid,'&mod_',pid,'=',mod,'&pm_',pid,'=',pm].join('');
  39. postoperation(str,formid)
  40. }
  41. function postoperation(actionstr,formid){
  42.     $(formid).action=actionstr;
  43. $(formid).submit();
  44. }
  45. function getradiovalue(RadioName){
  46.     var obj;   
  47.     obj=document.getElementsByName(RadioName);
  48.     if(obj!=null){
  49.         var i;
  50.         for(i=0;i<obj.length;i++){
  51.             if(obj[i].checked){
  52.                 return obj[i].value;           
  53.             }
  54.         }
  55.     }
  56.     return null;
  57. }