`

contentWindow

 
阅读更多

contentWindow属性是指指定的frame或者iframe所在的window对象:  
  <SCRIPT>  
  function   fnNavigate()  
  {  
          for(i=0;i<document.all.length;i++)  
          {  
                  if(document.all(i).tagName=="IFRAME")  
                  {  
                          document.all(i).contentWindow.location   =   "http://www.msn.com";  
                  }  
          }  
  }  
  </SCRIPT>  

分享到:
评论

相关推荐

    frame与contentwindow对象

    Frame 与 ContentWindow 对象 Frame 对象和 ContentWindow 对象是 HTML 文档中两个重要的对象,它们之间存在紧密的联系。通过本文,我们将详细介绍 Frame 对象和 ContentWindow 对象的概念、区别、使用方法和实际...

    深入解析contentWindow, contentDocument

    在Web开发中,特别是在涉及到复杂的页面嵌套结构时,`contentWindow` 和 `contentDocument` 是两个非常重要的属性,它们主要用于处理`iframe`之间的交互。本文将深入解析这两个属性,探讨它们的工作原理以及如何在...

    jQuery获取iframe的document对象的方法

    这里,`#myframe`是`iframe`的ID,`prop('contentWindow')`返回的是`iframe`的窗口对象,而`window`对象在JavaScript中包含了`document`属性,所以通过`.document`可以获取到`iframe`内部的`document`对象。...

    js iframe 打印 打印预览 页眉页脚的设置

    var iframeDoc = iframe.contentDocument || iframe.contentWindow.document; iframeDoc.head.innerHTML = '&lt;style&gt;@media print {...}&lt;/style&gt;'; iframeDoc.body.innerHTML = '这是页眉&lt;/header&gt;&lt;main&gt;打印内容...

    iframe根据页面内容自适应高度和宽度

    可以监听`load`事件,当`iframe`加载完成后,通过`contentWindow`和`contentDocument`属性获取内容的尺寸,然后调整`iframe`的大小。例如: ```javascript document.getElementById('myIframe').addEventListener('...

    JS页面跳转和js对iframe进行页面跳转、刷新

    在iframe内实现页面跳转通常使用`iframe.contentWindow.location.href`或`iframe.contentDocument.location.href`,具体取决于浏览器的兼容性。 ```javascript var iframe = document.getElementById('myIframe'); ...

    iframe自动适应高度(完美自适应高度嵌套代码),兼容目前主流浏览器。

    3. 当`iframe`加载完成时,通过`contentWindow`和`contentDocument`属性访问`iframe`内部的窗口和文档对象。 4. 获取`iframe`内容区域的高度,如`contentDocument.body.scrollHeight`或`contentDocument....

    iframe高度自适应,多浏览器兼容

    2. **IE8**:虽然支持`contentWindow`和`contentDocument`,但没有`MutationObserver`,所以需要在`window.onload`或`iframe.onload`事件中处理高度自适应。 3. **Firefox**:Firefox通常能较好地处理`iframe`,但...

    js获取iframe中的window对象的实现方法

    var win = $(‘#ifr’)[0].contentWindow; JS原生方法获取iframe的window对象 document.getElementById(“ifr”).contentWindow; 可见 $(‘#ifr’)[0].contentWindow 和 document.getElementById(“ifr”) 是等价的...

    vue与iframe之间的信息交互的实现

    如图中的 this.iframeWin = this.$refs.iframe.contentWindow 【拿到iframe的window对象】 3.vue如何向iframe内传送信息 可以通过H5新属性 postmessage 注释:【postMessage是有点类似于UDP协议,就像短信,是异步的...

    使用iframe window的scroll方法控制iframe页面滚动

    方法是使用iframe window的scroll方法: 1、获取iframe的窗口对象 var iwin = document.getElementById(‘iframe1’).contentWindow; 2 、获取iframe的窗口document对象 var doc = iwin.document; 3、调用iframe ...

    javascript 获取iframe里页面中元素值的方法

    在非IE浏览器中,我们不能直接使用`frames`对象,而是通过`getElementById`获取`iframe`元素,然后访问它的`contentWindow`属性,这个属性指向`iframe`内的`window`对象,再通过`document`属性获取DOM。代码如下: ...

    iframe读取document出现拒绝访问

    iframe.document出现拒绝访问。 threw an exception of type 'System.UnauthorizedAccessException' dynamic {System.UnauthorizedAccessException}

    浅谈js中子页面父页面方法 变量相互调用

    (1)子页面调用父页面的方法或者变量: window.parent.方法()或者变量名 window.parent相当于定位到父页面 之后的操作和在父页面中写代码一样写 window.parent.aa();...主要是通过contentWindow定位到

    动态加载js、css等文件跨iframe实现

    1、动态加载js,css文件(用原生js和jquery) iframe结构: frame... 1.jquery的append() 代码如下: 速度快,同步(需要引入jquery) var oBody = document.getElementById(“frame3_id”).contentWindow.$(“body”); va

    iframe如何刷新的三种实现方案

    这里的`contentWindow`属性返回`iframe`内的`window`对象,通过这个对象我们可以访问和操作`iframe`的内容,包括刷新页面。 ### 方案三:当`iframe`的`src`为其他网站地址(跨域操作时) 由于浏览器的安全策略,当...

    报表开发工具FineReport中js自定义按钮导出.pdf

    这里,我们使用 `document.getElementById('reportFrame')` 来获取 iframe 框架,然后通过 `contentWindow` 得到报表窗口,并拿到 `contentPane` 这个报表容器,最后就可以从容器中调用各种导出接口的方法了。...

    js iframe 方法及元素相互调用

    在同一个域下,可以使用`contentWindow`或`contentDocument`属性来访问`iframe`中的内容。例如,假设`iframe`的ID为`myIframe`,我们可以这样获取其内容: ```javascript var iframe = document.getElementById('...

Global site tag (gtag.js) - Google Analytics