标签:
如何实现自动刷新页面
如果需要自动刷新一个页面,可以用一个简单的HTML实现。
<meta http-equiv="refresh" content="10" /> <title>refresh this page every 10 seconds. close this page to stop.</title> <iframe src="http://www.cnblogs.com/bitzhuwei/p/CSharpGL-an-easy-to-learn-and-easy-to-use-OpenGL-library-in-csharp.html" width="100%" height="100%"/>
这个HTML代码,指定了每隔10秒刷新一次“http://www.cnblogs.com/bitzhuwei/p/CSharpGL-an-easy-to-learn-and-easy-to-use-OpenGL-library-in-csharp.html”这个页面。
标签:
原文地址:http://www.cnblogs.com/bitzhuwei/p/how-to-refresh-webpage-automatically.html