在iframe窗体内 获取父级的元素;;在父窗口中获取iframe中的元素

原文:在iframe窗体内 获取父级的元素;;在父窗口中获取iframe中的元素

在iframe中获取父窗口的元素

$(‘#父窗口中的元素ID’, parent.document).click();

  

在父窗口中获取iframe中的元素

$(“#iframe的ID”).contents().find(“#iframe中的控件ID”).click();

  

原文地址:https://www.cnblogs.com/lonelyxmas/p/8353815.html

时间: 2024-12-26 17:59:40

在iframe窗体内 获取父级的元素;;在父窗口中获取iframe中的元素的相关文章

兼容性—IE6/7下带有overflow:hidden属性的父级元素包不住带有position:relative属性的子元素

IE6/7下带有overflow:hidden属性的父级元素包不住带有position:relative属性的子元素 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style> .box{ width: 200px; height: 200px; bord

页面单击按钮弹出modaldialog然后调用ajax处理程序获取数据,给父级页面控件赋值

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="RefTopicList.aspx.cs" Inherits="Project.RefTopicList" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.

width:100%与绝对定位同时存在,偏移出父级容器

当父级容器内的子元素width设为100%,而子元素又有绝对定位时,子元素伸展超出父级容器,像下面 出现这种情况的原因,width:100%,这个百分之百是相对其定位父级而言的,其定位父级有多宽,这个子元素就有多宽,所以子元素跑到了父级容器外 html <div class="container"> <div class="content">好的</div> </div> css .container { positi

父级的line-height对加了浮动的子集input不管用

html代码如下: 1 <div class="billtime clearfix"> 3 <span class="fl">原交易订单号:</span> 4 <input class="fl"/> 6 </div> css代码如下: 1 .billtime { 2 line-height: 30px 3 } 4 .fl { 5 float: left 6 } 7 .clearfix {

弹窗添加数据后实现父级页面同步添加

弹窗: function openUrl() { var iWidth = 800; var iHeight = 600; return window.open('<%= Application["rootURL"] %>AP_ImageIndexing/Indexing/AddPo.aspx', 'AddPO', 'width=' + iWidth + ',height=' + iHeight + ', top=' + (screen.height - iHeight)

JS关闭当前父级div

代码: 1 <img src="img/diagram.png" onclick="javascript:this.parentNode.parentNode.removeChild(this.parentNode);"/> 找到其父级的父级,用removeChild()方法移除父级div. 1 <img alt='' onclick="javascript:this.parentNode.parentNode.parentNode.pa

springboot项目创建父级依赖

第一步创建父级工程 *注意父级工程这块一定要选择pom 选择父级的pom文件 <!--父工程对版本进行一个管理 --> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> &l

js获取iframe和父级之间元素,方法、属,获取iframe的高度自适应iframe高度

摘自:http://blog.csdn.net/kongjiea/article/details/38870399 1.在父页面 获取iframe子页面的元素 (在同域的情况下 且在http://下测试,且最好在iframe onload加载完毕后 dosomething...) js写法 a.同过contentWindow获取 也有用contentDocument 获取的 但是contentWindow 兼容各个浏览器,可取得子窗口的 window 对象.contentDocument Fir

js获取iframe中的元素以及在iframe中获取父级的元素(包括iframe中不存在name和id的情况)

第一种情况:iframe中不存在name和id的方法:(通过contentWindow获取) var iframe = document.getElementsByTagName('iframe')[0];var ifr_document = iframe.contentWindow.document;//iframe中的文档内容 或者: var _iframe = document.getElementByIdx_x('iframeId').contentWindow; var _div =_