1.
<meta http-equiv="refresh" content="5">
2. 
<body onload="setTimeout('history.go(0)',5000)">

解决方案 »

  1.   

    <meta http-equiv="refresh" content="5">
    <body onload="setTimeout('history.go(0)',5000)">什么意思,能解释一下吗?
      

  2.   

    5 and 5000 means 5 seconds, just try these two methods, but do not try them at the same time
      

  3.   

    两句都是每隔5秒自动刷新一次refresh 刷新;content时间间隔,单位秒setTimeout,类似VB里面的Timer控件,history.go(0) ,代表刷新。
    参数5000的单位是毫秒
      

  4.   

    <body onload="setTimeout('this.location.reload();',5000)">