子iframe使用jquery訪問父頁面元素
在$()
選擇元素時加入第二個引數parent.document
$(""
, parent.document)
.val()
)
index.html
>
head
>
>
style
="background-color
:orange;
height
:200px;
width
:50%;
float
:left;
">
"name"
type
="text"
placeholder
="輸入姓名"
>
div>
style
="background-color
:pink;
height
:200px;
width
:50%;
float
:right;
">
src=
"iframe.html"
>
iframe
>
div>
body
>
html
>
iframe.html
>
head
>
>
"get"
>
獲取姓名button
>
src=
"">
script
>
>
// 子iframe訪問父頁面元素$(
"#get").
click
(function()
);// 子iframe監聽父頁面元素$(
"#name"
, parent.document)
.change
(function()
);script
>
body
>
html
>
jQuery獲取子iframe中點選事件
今天oa裡有個需求,要在乙個鏈結後,增加當前使用者的賬戶密碼,再跳轉。開啟頁面檢視原始碼,發現,這個鏈結在iframe裡,以為能夠根據iframe直接find出來 試了試。報錯 uncaught typeerror parent.triggermouseuphandle is not a funct...
子父頁面的iframe方法呼叫
父頁面呼叫子頁面方法 framename.window.childmethod 子頁面呼叫父頁面方法 parent.window.parentmethod 獲取到頁面的window.document物件後,即可訪問dom元素 要確保在iframe載入完成後再進行操作,如果iframe還未載入完成就開...
iframe 父視窗和子視窗的呼叫方法
父視窗呼叫子視窗 iframe id.iframe document object.object attribute attribute value 例子 onclick iframe text.myh1.innertext 子視窗呼叫父視窗 parent.parent document objec...