html中iframe呼叫父頁面方法和變數

2021-06-21 16:34:21 字數 559 閱讀 4907

這篇文章主要是對jqueryiframe頁面操作父頁面中的元素與方法進行了詳細的分析介紹,需要的朋友可以過來參考下,希望對大家有所幫助

1)在iframe中查詢父頁面元素的方法:

$('#id', window.parent.document)

2)在iframe中呼叫父頁面中定義的方法和變數:

parent.method

parent.value

3)例項

1.父頁面

複製**

**如下:

<%@ page language="c#" autoeventwireup="true" codebehind="default.aspx.cs" inherits="iframedemo._default" %>

2.子頁面

複製**

**如下:

<%@ page language="c#" autoeventwireup="true" codebehind="iframe.aspx.cs" inherits="iframedemo.iframe" %>

html中父頁給iframe傳值

1.document.getelementbyid ii 得到iframe物件後,就可以通過 contentwindow屬性得到iframe包含頁面的window物件.2.jquery中獲取iframe包含頁面的window物件的方法 id 0 contentwindow 3.得到iframe的wi...

重新載入父頁中iframe的方法

1 window.parent.frames 1 location.reload 適用於只有乙個iframes 2 window.parent.frames.getallroom.location.reload 適用於多個或乙個iframes 3 window.parent.frames.getal...

jQuery子iframe呼叫父iframe

子iframe使用jquery訪問父頁面元素 在 選擇元素時加入第二個引數parent.document parent.document val index.html head style background color orange height 200px width 50 float lef...