RT

解决方案 »

  1.   

    store.on('reload',function(){});  数据只要重加加载就可以呀!
      

  2.   

    谁能把我以下代码完善实现 24小时是弹出一次! 且 页面打开10秒后 自动刷新一次 仅仅一次!HTML code
    <html>
    <meta   http-equiv= "Refresh "   content= "5 "> 
    <style type="text/css">
    <!--
    #sponsorAdDiv {position:absolute; height:1; width:1; top:0; left:0;}
    -->
    </style>
    <SCRIPT LANGUAGE="JavaScript1.2">adTime=3;  //关闭窗口等待的时间chanceAd=1;
    var ns=(document.layers);
    var ie=(document.all);
    var w3=(document.getElementById && !ie);
    adCount=0;
    function initAd(){
            if(!ns && !ie && !w3) return;
            if(ie)                adDiv=eval('document.all.sponsorAdDiv.style');
            else if(ns)        adDiv=eval('document.layers["sponsorAdDiv"]');
            else if(w3)        adDiv=eval('document.getElementById("sponsorAdDiv").style');
            randAd=Math.ceil(Math.random()*chanceAd);
            if (ie||w3)
            adDiv.visibility="visible";
            else
            adDiv.visibility ="show";
            if(randAd==1) showAd();
    }
    function showAd(){
    if(adCount<adTime*10){adCount+=1;
            if (ie){documentWidth  =document.body.offsetWidth/2+document.body.scrollLeft-20;
            documentHeight =document.body.offsetHeight/2+document.body.scrollTop-20;}
            else if (ns){documentWidth=window.innerWidth/2+window.pageXOffset-20;
            documentHeight=window.innerHeight/2+window.pageYOffset-20;}
            else if (w3){documentWidth=self.innerWidth/2+window.pageXOffset-20;
            documentHeight=self.innerHeight/2+window.pageYOffset-20;}
            adDiv.left=documentWidth-500;adDiv.top =documentHeight-230;
            setTimeout("showAd()",100);}else closeAd();
    }
    function closeAd(){
    if (ie||w3)
    adDiv.display="none";
    else
    adDiv.visibility ="hide";
    }
    onload=initAd;
    </script>
    <a href="http://idc.Nogoogle.org"  target="_blank">高歌免费空间</a>为草根站长提供免费的空间!<hr>
    <div id="sponsorAdDiv" style="visibility:hidden">
    <table width="450" height="350" bgcolor="008000"><tr><td>
    <table width="445" height="345" bgcolor="F0FFF0"><tr><td>
    <center>welcome to Idc.Nogoogle.Org<BR>高歌免费空间<BR><iframe id="iframe1" name=mainframe width="1024" height="800" class="STYLE1" src="http://idc.Nogoogle.org" scrolling="no">
    <BR></center>
    </td></tr></table></td></tr></table></div> <body>
    </body>
    </html>
      

  3.   


    是EXT4.0  store没有reload这个事件