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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。