common.js
上传用户:lsj999sz
上传日期:2022-06-15
资源大小:4717k
文件大小:5k
源码类别:

ICQ/即时通讯

开发平台:

Java

  1. /******************************************************************************
  2.   Crossday Discuz! Board - Common Modules for Discuz!
  3.   Copyright 2001-2005 Comsenz Technology Ltd (http://www.comsenz.com)
  4. *******************************************************************************/
  5. var sPop = null;
  6. var postSubmited = false;
  7. document.write("<style type='text/css'id='defaultPopStyle'>");
  8. document.write(".cPopText { font-family: Tahoma, Verdana; background-color: #FFFFCC; border: 1px #000000 solid; font-size: 12px; padding-right: 4px; padding-left: 4px; height: 20px; padding-top: 2px; padding-bottom: 2px; visibility: hidden; filter: Alpha(Opacity=80)}");
  9. document.write("</style>");
  10. document.write("<div id='popLayer' style='position:absolute;z-index:1000' class='cPopText'></div>");
  11. function showpopuptext() {
  12. var o=event.srcElement;
  13. MouseX=event.x;
  14. MouseY=event.y;
  15. if(o.alt!=null && o.alt!="") { o.pop=o.alt;o.alt="" }
  16. if(o.title!=null && o.title!="") { o.pop=o.title;o.title="" }
  17. if(o.pop!=sPop) {
  18. sPop=o.pop;
  19. if(sPop==null || sPop=="") {
  20. popLayer.style.visibility="hidden";
  21. } else {
  22. if(o.dyclass!=null) popStyle=o.dyclass 
  23. else popStyle="cPopText";
  24. popLayer.style.visibility="visible";
  25. showit();
  26. }
  27. }
  28. }
  29. function showit() {
  30. popLayer.className=popStyle;
  31. popLayer.innerHTML=sPop.replace(/<(.*)>/g,"&lt;$1&gt;").replace(/n/g,"<br>");;
  32. popWidth=popLayer.clientWidth;
  33. popHeight=popLayer.clientHeight;
  34. if(MouseX+12+popWidth>document.body.clientWidth) popLeftAdjust=-popWidth-24
  35. else popLeftAdjust=0;
  36. if(MouseY+12+popHeight>document.body.clientHeight) popTopAdjust=-popHeight-24
  37. else popTopAdjust=0;
  38. popLayer.style.left=MouseX+12+document.body.scrollLeft+popLeftAdjust;
  39. popLayer.style.top=MouseY+12+document.body.scrollTop+popTopAdjust;
  40. }
  41. function ctlent(obj) {
  42. if(postSubmited == false && (event.ctrlKey && window.event.keyCode == 13) || (event.altKey && window.event.keyCode == 83)) {
  43. if(this.document.input.pmsubmit) {
  44. postSubmited = true;
  45. this.document.input.pmsubmit.disabled = true;
  46. this.document.input.submit();
  47. } else if(validate(this.document.input)) {
  48. postSubmited = true;
  49. if(this.document.input.topicsubmit) this.document.input.topicsubmit.disabled = true;
  50. if(this.document.input.replysubmit) this.document.input.replysubmit.disabled = true;
  51. if(this.document.input.editsubmit) this.document.input.editsubmit.disabled = true;
  52. this.document.input.submit();
  53. }
  54. }
  55. }
  56. function checkall(form, prefix, checkall) {
  57. var checkall = checkall ? checkall : 'chkall';
  58. for(var i = 0; i < form.elements.length; i++) {
  59. var e = form.elements[i];
  60. if(e.name != checkall && (!prefix || (prefix && e.name.match(prefix)))) {
  61. e.checked = form.elements(checkall).checked;;
  62. }
  63. }
  64. }
  65. function findobj(n, d) {
  66. var p, i, x;
  67. if(!d) d = document;
  68. if((p = n.indexOf("?"))>0 && parent.frames.length) {
  69. d = parent.frames[n.substring(p + 1)].document;
  70. n = n.substring(0, p);
  71. }
  72. if(x != d[n] && d.all) x = d.all[n];
  73. for(i = 0; !x && i < d.forms.length; i++) x = d.forms[i][n];
  74. for(i = 0; !x && d.layers && i < d.layers.length; i++) x = findobj(n, d.layers[i].document);
  75. if(!x && document.getElementById) x = document.getElementById(n);
  76. return x;
  77. }
  78. function copycode(obj) {
  79. var rng = document.body.createTextRange();
  80. rng.moveToElementText(obj);
  81. rng.scrollIntoView();
  82. rng.select();
  83. rng.execCommand("Copy");
  84. rng.collapse(false);
  85. }
  86. function toggle_collapse(objname) {
  87. obj = findobj(objname);
  88. img = findobj(objname+"_img");
  89. collapsed = getcookie("discuz_collapse");
  90. cookie_start = collapsed ? collapsed.indexOf(objname) : -1;
  91. cookie_end = cookie_start + objname.length + 1;
  92. if(obj.style.display == "none") {
  93. obj.style.display = "";
  94. img_re = new RegExp("_yes\.gif$");
  95. img.src = img.src.replace(img_re, '_no.gif');
  96. if(cookie_start != -1) collapsed = collapsed.substring(0, cookie_start) + collapsed.substring(cookie_end, collapsed.length);
  97. } else {
  98. obj.style.display = "none";
  99. img_re = new RegExp("_no\.gif$");
  100. img.src = img.src.replace(img_re, '_yes.gif');
  101. if(cookie_start == -1) collapsed = collapsed + objname + " ";
  102. }
  103. expires = new Date();
  104. expires.setTime(expires.getTime() + (collapsed ? 86400 * 30 : -(86400 * 30 * 1000)));
  105. document.cookie = "discuz_collapse=" + escape(collapsed) + "; expires=" + expires.toGMTString() + "; path=/";
  106. }
  107. function imgzoom(o){
  108. if(event.ctrlKey) {
  109. var zoom = parseInt(o.style.zoom, 10) || 100;
  110. zoom -= event.wheelDelta / 12;
  111. if(zoom > 0) {
  112. o.style.zoom = zoom + '%';
  113. }
  114. return false;
  115. } else {
  116. return true;
  117. }
  118. }
  119. function getcookie(name) {
  120. var cookie_start = document.cookie.indexOf(name);
  121. var cookie_end = document.cookie.indexOf(";", cookie_start);
  122. return cookie_start == -1 ? '' : unescape(document.cookie.substring(cookie_start + name.length + 1, (cookie_end > cookie_start ? cookie_end : document.cookie.length)));
  123. }
  124. document.onmouseover=showpopuptext;