當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML DOM Location reload()用法及代碼示例


HTML DOM Location reload() 方法用於重新渲染當前文檔。它提供與瀏覽器中的重新加載按鈕相同的函數。

用法

以下是語法 -

location.reload(forceGetParameter)

參數

這裏,“forceGetParameter”可以是以下 -

強製獲取參數細節
true它定義從服務器重新加載當前文檔。
false它定義從瀏覽器緩存重新加載當前文檔。

示例

讓我們看一個例子Location reload()屬性 -

<!DOCTYPE html>
<html>
<head>
<title>Location reload()</title>
<style>
   form {
      width:70%;
      margin:0 auto;
   text-align:center;
   }
   * {
      padding:2px;
      margin:5px;
   }
   input[type="button"] {
      border-radius:10px;
   }
</style>
</head>
<body>
<form>
<fieldset>
<legend>Location-reload( )</legend>
<label for="urlSelect">Email:</label>
<input type="email" id="emailSelect"><br>
<label for="urlSelect">Password:</label>
<input type="password" id="passSelect"><br>
<input type="button" onclick="doReload()" value="Reload">
<div id="divDisplay"></div>
</fieldset>
</form>
<script>
   var divDisplay = document.getElementById("divDisplay");
   var emailSelect = document.getElementById("emailSelect");
   var passSelect = document.getElementById("passSelect");
   divDisplay.textContent = 'Do not reload, all the details will be lost';
   function doReload(){
      alert('Page reloaded, all the details are lost');
      location.reload();
   }
</script>
</body>
</html>

輸出

這將產生以下輸出 -

點擊前‘Reload’按鈕 -

點擊‘Reload’填充細節後的按鈕 -

相關用法


注:本文由純淨天空篩選整理自AmitDiwan大神的英文原創作品 HTML DOM Location reload() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。