我有一个 HTML 页面。问题是我不想让用户在每次添加新内容时都刷新页面。
我有以下代码以确保页面没有被缓存:
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate"/>
<meta http-equiv="Pragma" content="no-cache"/>
<meta http-equiv="Expires" content="0"/>
问题是,我仍然需要刷新页面才能显示最新的内容。难道我做错了什么?我应该使用其他标签吗?