如何使用javascript打开新标签页或导航到新网址(跨域网页)。下面让我导航,但好像浏览器持有缓存,并在标题中发送'If-Modified-Since',然后服务器响应 304 状态。我们可以选择清除缓存浏览器并打开新标签吗?
尝试以下选项:
url = url+'&d='+new Date().getTime();
- window.location.href = url;
- window.location.reload(true);
- window.location.replace(url);
- window.open(url,'childwindow');
我无法访问子页面。提前感谢您的帮助。