| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- //forum//
- function $() {
- var Ptr=document.getElementById("tab").getElementsByTagName("tr");
- for (i=1;i<Ptr.length+1;i++) {
- Ptr[i-1].className = (i%2>0)?"t1":"t2";
- }
- }
- window.onload=$;
- for(var i=0;i<Ptr.length;i++) {
- Ptr[i].onmouseover=function(){
- this.tmpClass=this.className;
- this.className = "t3";
-
- };
- Ptr[i].onmouseout=function(){
- this.className=this.tmpClass;
- };
- }
- //forum end//
- //tabsbar//
- function selectTag(showContent,selfObj){
- // ������ǩ
- var tag = document.getElementById("tags").getElementsByTagName("li");
- var taglength = tag.length;
- for(i=0; i<taglength; i++){
- tag[i].className = "";
- }
- selfObj.parentNode.className = "selectTag";
- // ��������
- for(i=0; j=document.getElementById("tagContent"+i); i++){
- j.style.display = "none";
- }
- document.getElementById(showContent).style.display = "block";
- }
- var real_height=document.documentElement.clientHeight;
- document.getElementById("tagContent").style.height=real_height-40+"px";
- //alert(document.documentElement.clientHeight)
- //alert(document.getElementById("tagContent").style.height)
-
- //tabsbar end//
|