如何减少函数 location.reload() 的时间?

How can i reduce the time for function location.reload()?

我在我的 onClick() 函数中使用了 window.location.reload() 但是重新加载花费了太多时间所以我如何减少重新加载的时间 content.I 已经修改了重新加载调用作为 window.location.reload(true) 这样它就不会使用缓存但它仍然占用太多 time.Actually,问题是 location.reload() 它没有刷新,它正在重新加载整个 content.Can 有人帮忙吗??

  function onFunctionClick(getURL){
    window.location=getURL;
  }
<html>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
   <button onclick="onFunctionClick('"> Refresh </button>
</html>

<script>
  function onFunctionClick(getURL){
    window.location=getURL;
  }

<html>
   <button onclick="onFunctionClick('"> Refresh </button>
</html>

我现在使用 history.go(0) 而不是 window.location.reload(),它比第一个 reload() 调用更流畅、更快。最重要的是页面在这个 reload() 调用中不会变成空白,所以它解决了我的 problem.Thanks 很多问题,每个人都为你的回应!!