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


HTML DOM write()用法及代碼示例


HTML DOM write() 為用戶提供了將多個表達式(HTML 或 JavaScript)直接寫入文檔的函數。

NOTE- 此方法覆蓋文檔中的 HTML 代碼(如果有)並且不會將參數附加到新行。

用法

以下是語法 -

document.write(arguments)

示例

讓我們看一個 HTML DOM 文檔 write() 方法的例子 -

<!DOCTYPE html>
<html>
<head>
<title>HTML DOM write()</title>
<style>
   * {
      padding:2px;
      margin:5px;
   }
   form {
      width:70%;
      margin:0 auto;
      text-align:center;
   }
   input[type="button"] {
      border-radius:10px;
</style>
</head>
<body>
   <form>
      <fieldset>
         <legend>HTML-DOM-write( )</legend>
         <input id="urlSelect" type="url" placeholder="Type URL here..."><br>
         <input id="textSelect" type="text" placeholder="Full Name"><br>
         <input type="button" value="Go To" onclick="openWindow()">
         <input type="button" value="Close" onclick="closeWindow()">
         <input type="button" value="Restore" onclick="restoreWindow()">
         <div id="divDisplay"></div>
      </fieldset>
   </form>
   <script>
      var urlSelect = document.getElementById("urlSelect");
      var textSelect = document.getElementById("textSelect");
      var winSource;
      function openWindow() {
         browseWindow = window.open(urlSelect.value, "browseWindow", "width=400, height=200");
         winSource = urlSelect.value;
         browseWindow.opener.document.getElementById("divDisplay").textContent = "Child
         Window Active";
         if(textSelect.value !== 'admin')
            browseWindow.document.write("<p><strong>Unauthorized User:
            </strong></p>","<p>"+textSelect.value+"</p>");
         }
      function closeWindow(){
         if(browseWindow){
            browseWindow.close();
            browseWindow.opener.document.getElementById("divDisplay").textContent = "Child
            Window Closed";
         }
      }
      function restoreWindow(){
         if(browseWindow.closed){
            browseWindow = window.open(winSource, "browseWindow", "width=400, height=200");
            browseWindow.opener.document.getElementById("divDisplay").textContent = "Child
            Window Restored";
         }
      }
   </script>
</body>
</html>

輸出

點擊‘Go To’帶有未授權全名設置的按鈕 -

點擊‘Go To’帶有授權全名集的按鈕 -

相關用法


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