高手们,帮我看看这个
<LI><A onclick=javascript:setbriefhttp(2010)  href="javascript:void(0)">2010年</A> </LI>

<SCRIPT src="xx/select.js" 
type=text/javascript></SCRIPT>我怎样实现这种效果?
找不到相关的页面啊?请指点一下!

解决方案 »

  1.   

    大概是这个样子http://topic.hongxiu.com/aboutus/news.html
      

  2.   

    function setbriefhttp(year)
    {
    var xmlHttp;
     var number = Math.random(); 
    url="getcontent.aspx?type=1&year="+year+"&n="+number;
        obj=document.getElementById("newscontent");
             obj.innerHTML="内容读取中,请稍后……"; if (window.ActiveXObject) 

    xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");

    else if (window.XMLHttpRequest) 

    xmlHttp = new XMLHttpRequest();

    xmlHttp.open("GET",url,true);
    xmlHttp.send(null);
    xmlHttp.onreadystatechange = function()
    {
    if(xmlHttp.readyState == 4)
    {
    obj.innerHTML= xmlHttp.responseText;
    }
    }
    }看它JS代码url="getcontent.aspx?type=1&year="+year+"&n="+number;还需要有页面。。这些都要自己做的。。
      

  3.   

    如果我要换成帝国CMS的内核,该怎样套这句
    url="getcontent.aspx?type=1&year="+year+"&n="+number