Happy Pig's - 哼哼
开开心心每一天,勤勤奋奋过日子。
   1.
    var strForeId;   
     function IsDisplay(id)
     {            
        if(strForeId!=null)
        {
            if(this.document.getElementById(strForeId) != null)
            {  
                if(this.document.getElementById(strForeId).style.display=='')
                {
                    this.document.getElementById(strForeId).style.display='none';
                }
            }
         }
         this.document.getElementById(id).style.display='';
         strForeId=id;
     }

2.
 function IsDisplay(id)
   {  
 if(this.document.getElementById(id).style.display == 'none')
 {
  this.document.getElementById(id).style.display = '';
 }
 else
 {
  this.document.getElementById(id).style.display = 'none';
 }
  }


posted on 2007-04-19 13:55  boulder  阅读(165)  评论(0)    收藏  举报