<meta http-equiv="refresh" content="2" url="/">
自动刷新,相比js实现更加简单粗暴。自动刷新在前端开发时候可以接近实时“即改即见”,提高了开发效率。
附js实现:
setTimeout(function(){ location.reload(); },2000);
html meta 自动刷新
原文:http://www.cnblogs.com/culnoty/p/4470063.html