Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 649 Bytes

按时间间隔刷新页面(不使用 JavaScript).md

File metadata and controls

14 lines (10 loc) · 649 Bytes

按时间间隔刷新页面(不使用 JavaScript)

<!-- 5 秒后刷新页面 -->
<meta http-equiv="refresh" content="5" />
<!-- 5 秒后刷新并重定向到 https://juejin.cn/user/96412754251390 -->
<meta http-equiv="refresh" content="5;https://juejin.cn/user/96412754251390" />

注意:如果你的网站不是专门为响应而设计的,并且在这个尺寸下工作得很好,不要使用响应 meta 标签,因为它会让体验变得更糟。

更多资源

Stop using the viewport meta tag (until you know how to use it)