当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML DOM Location replace()用法及代码示例


HTML DOM Location replace() 方法用于渲染一个新文档来替换当前文档。它还从文档历史记录中删除当前文档 URL,使用禁用导航到旧文档‘back’按钮。

用法

以下是语法 -

location.replace(URLString)

示例

让我们看一个例子Location replace()属性 -

<!DOCTYPE html>
<html>
<head>
<title>Location replace()</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-replace( )</legend>
<label for="urlSelect">Current URL:</label>
<input type="url" id="urlSelect" value="https://www.example.com"><br>
<label for="newUrlSelect">New URL:</label>
<input type="url" id="newUrlSelect" placeholder="Give new url..."><br>
<input type="button" onclick="doReplace()" value="Go to new URL">
<div id="divDisplay"></div>
</fieldset>
</form>
<script>
   var divDisplay = document.getElementById("divDisplay");
   var urlSelect = document.getElementById("urlSelect");
   var newUrlSelect = document.getElementById("newUrlSelect");
   function doReplace(){
      if(newUrlSelect.value === '')
         divDisplay.textContent = 'Provide new URL';
      else{
         location.replace(newUrlSelect.value);
         divDisplay.textContent = 'Redirecting to new URL';
      }
   }
</script>
</body>
</html>

输出

这将产生以下输出 -

点击后‘Go to new URL’没有输入的按钮 -

点击‘Go to new URL’填充细节后的按钮 -

相关用法


注:本文由纯净天空筛选整理自AmitDiwan大神的英文原创作品 HTML DOM Location replace() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。