5 Seconds
<iframe id=a1 src="about:yourpage.htm"></iframe>
<script>
setInterval("a1.location.reload()",5000)
</script>

解决方案 »

  1.   


    <html>
    <head>
    <meta NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
    <meta http-equiv="Refresh" content="1000;URL=/expert/MemberInfo.asp">
    <meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
    <meta http-equiv="Content-Type" content="text/html" ; charset="gb2312">
    <title>CSDN_专家门诊_会员信息</title>
    <link rel="stylesheet" href="/csdn.css">
    </head>
    <script language="JavaScript">
    <!--
    function mylogin(url)
    {
    window.parent.location = url+"&from="+window.parent.location.pathname+"&Roomid=23&typenum=2&tabletype=now&searchKeys=&author=&whichpage=1";
    }
    function mylogin2(url)
    {
    window.open(url+"&from="+window.parent.location.pathname);
    newMessage.style.visibility = "hidden";
    }
    function loginsub()
    {
    document.login.submit();
    }
    //-->
    </script>
    <body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
    <table border="0" width="100%" height="100%"><tr><td>
    <img src="/images/1d.GIF" width="19" height="15">
    欢迎您:yonghengdizhen<br>
    <img src="/images/1d.GIF" width="19" height="15">
    专家分:3191<br>
    <img src="/images/1d.GIF" width="19" height="15">
    可用分:8088<br>
    <img src="/images/1d.GIF" width="19" height="15">
    <a href="/member/logonout.asp" target="_top">注销我的登录</a><br>


    </td></tr></table>
    </body>
    </html>
      

  2.   

    楼上的是什么?写在Iframe或者本页面都可以。例子如下
    主页面:
    <HTML><HEAD><TITLE>none</TITLE></head>
    <body>
    <IFRAME name="Myiframe" frameBorder=0 height=220 width=150
          src="MyIframe.htm" marginwidth=0 marginheight=0
          scroll="no">
    </IFRAME>
    </BODY>
    </HTML>iframe:
    <HTML>
    <HEAD>
    <TITLE>llrock</TITLE><script>
    setInterval("this.location.reload()",1000) //每秒刷新页面一次
    </script></head><body>
    <script language="JavaScript" class="gongsi">
    var enable=0;
    today=new Date();
    var date;
    var centry;
    var hour;
    var minute;
    var second;hour=today.getHours()
    minute=today.getMinutes()
    second=today.getSeconds()document.fgColor="000000";
    centry="";
    if(today.getYear()<2000)centry="19";
    date1=centry+(today.getYear())+"年"+(today.getMonth()+1)+"月"+(today.getDate())+"日"+"<BR>"+hour+":"+minute+":"+second;
    document.write(date1);
    </script></BODY>
    </HTML>
      

  3.   

    yonghengdizhen(坐台小姐(绝对不是妓女)) 的意思是:
    你看你在csdn上的显示你的专家分的窗口,就是一个定时刷新的iframe,看看它的代码就可以了。