在本地建立一个html文件,注意,文件名要和要和下面的URL里面的相同,我这里使用index.html。刷新间隔3秒,刷新我的相册。你如果upload到服务器上一样可以用。原理就是刷新其本身,你想要刷新的页面只是它的一个frame
=================================
<html>
<head>
<meta http-equiv="Refresh" content="3;URL=index.html">
<title>New Page 1</title>
</head>
<frameset rows="*">
<frame name="main" src="http://www.pbase.com/heian2">
<noframes>
<body>
<p>This page uses frames, but your browser doesn't support them.</p>
</body>
</noframes>
</frameset>
</html>