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


HTML DOM Window frames屬性用法及代碼示例


HTML DOM Window frames 屬性返回一個與窗口對應的對象,代表其中存在的所有框架。

用法

以下是語法 -

返回當前窗口中的幀

window.frames

讓我們看一個例子HTML DOM Window frames屬性 -

示例

<!DOCTYPE html><html>
<head>
<title>HTML DOM Window frames</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-Window-frames</legend>
         <label>User 1:</label><iframe src="https://www.example.com"></iframe><br>
         <label>User 2:</label><iframe src="https://www.example.com"></iframe><br>
         <input type="button" value="Launch Virus" onclick="goToURL()">
         <div id="divDisplay">
         </div>
      </fieldset>
   </form>
   <script>
      var divDisplay = document.getElementById("divDisplay");
      function goToURL() {
         for (var i = window.frames.length - 1; i >= 0; i--)
            window.frames[i].location = "http://www.tutorialspoint.com/html5/foo.mp4";
            divDisplay.textContent = 'Virus Deployed';
      }
   </script>
</body>
</html>

輸出

點擊前‘Launch Virus’按鈕 -

點擊後‘Launch Virus’按鈕 -

相關用法


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