What is popping up in js window.open is the cache page problem from last time

  • 2020-03-30 01:09:09
  • OfStack

To solve the problem that a window.open page will save the cache.

Add the following code to the head TAB of the page
 
<meta http-equiv="Pragma" content="no-cache" /> 
<meta http-equiv="Cache-Control" content="no-cache" /> 
<meta http-equiv="Expires" content="0" /> 

Related articles: