主頁 > 知識庫 > ajax實現(xiàn)標(biāo)簽導(dǎo)航

ajax實現(xiàn)標(biāo)簽導(dǎo)航

熱門標(biāo)簽:辰溪地圖標(biāo)注 遼寧銀行智能外呼系統(tǒng) 澳大利亞城市地圖標(biāo)注 遼寧正規(guī)電銷機器人 許昌智能電銷機器人公司 海南銀行智能外呼系統(tǒng)商家 電銷機器人違法了嗎 姜堰電銷機器人 上海浦東騰訊地圖標(biāo)注位置
主要函數(shù):
復(fù)制代碼 代碼如下:

!--
function getObject(objectId) {
     if(document.getElementById  document.getElementById(objectId)) {
    // W3C DOM
       return document.getElementById(objectId);
     } 
     else if (document.all  document.all(objectId)) {
    // MSIE 4 DOM
       return document.all(objectId);
     } 
     else if (document.layers  document.layers[objectId]) {
    // NN 4 DOM.. note: this won't find nested layers
       return document.layers[objectId];
     } 
     else {
       return false;
    }


var responsecont;
var xmlHttp;
var requestType;
var newsstring;

function CreateXMLHttpRequest(){
   // Initialize Mozilla XMLHttpRequest object
   if (window.XMLHttpRequest){
       xmlHttp = new XMLHttpRequest();
   } 
   // Initialize for IE/Windows ActiveX version
   else if (window.ActiveXObject) {
       try{
            xmlHttp = new ActiveXObject("Msxml2.XMLHTTP.3.0");
       } 
       catch (e){
            try{
                xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
            }
            catch (e){newsstring = "div class='loading'>Loading rquest content fail, Please try it again latter.../div>";}
       }
   }
}

function getnews(tagid,x){
   var url = tagid+'_'+x+'.htm';
   var loadstatustext="div class='loading'>img src='images/loading.gif' /> Loading request content, please wait.../div>";
   requestType = tagid;
   CreateXMLHttpRequest();   

   getObject(requestType+'_cnt').innerHTML = loadstatustext;
   xmlHttp.onreadystatechange = processRequestChange;
   xmlHttp.open("GET", url, true);
   xmlHttp.setRequestHeader("If-Modified-Since","0");
   xmlHttp.send(null);  
}

function processRequestChange(){
   // only if xmlHttp shows "complete"
   if (xmlHttp.readyState == 4){
      // only http 200 to process
      if (window.location.href.indexOf("http")==-1 || xmlHttp.status == 200){
         newsstring = xmlHttp.responseText;
         //inject centent to tab-pane
            shownews(requestType,newsstring);
      }
   }
}

function shownews(requestType,newsstring){
//![CDATA[
    responsecont = getObject(requestType+'_cnt');
    responsecont.innerHTML = newsstring;
//]]>
}

function TabNews(tagid,x){
    for (var i=1;i=7;i+=2) {
         if (i == x) {
            getObject(tagid+i).className="tabactive"+i;
            if(i!=1){
               getObject(tagid+(i-1)).style.display="none";               
               if(i!=7){
                  getObject(tagid+(i+1)).style.display="none";
               }                 
            }
            if(i==1){
               getObject(tagid+"2").style.display="none";
            } 
            try{            
               getnews(tagid,i);
            }
            catch(e){
               alert(e);
            }  
        }
        else
        {
            getObject(tagid+i).className="";            
            if(i!=7){
               getObject(tagid+(i+1)).style.display="block";
            }             
        }         
   }
}
//-->


調(diào)用方法:
復(fù)制代碼 代碼如下:
li style="cursor:pointer" id="tab3" onclick="TabNews('tab',3)">最新折扣信息/li>

標(biāo)簽:威海 晉城 銅川 西藏 崇左 撫州 深圳 伊春

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《ajax實現(xiàn)標(biāo)簽導(dǎo)航》,本文關(guān)鍵詞  ajax,實現(xiàn),標(biāo)簽,導(dǎo)航,ajax,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《ajax實現(xiàn)標(biāo)簽導(dǎo)航》相關(guān)的同類信息!
  • 本頁收集關(guān)于ajax實現(xiàn)標(biāo)簽導(dǎo)航的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章