第一、在iframe中查找父页面元素的方法:
$('#id', window.parent.document)
第二、在父页面中获取iframe中的元素方法:
$(this).contents().find("#suggestBox")
第三、在iframe中调用父页面中定义的方法和变量:
parent.method
parent.value
第四、父页面调用iframe内的JS的方法,无须给iframe加id,只需用Jq选中iframe就行了
$("#id").find("iframe")[0].contentWindow.func()
iframe里用jquery获取父页面body
iframe.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
it is a iframe
|
content.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
content iframe
|
在iframe中调用父页面中定义的方法和变量
1.父页面
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
default.aspx
|
2.子页面
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
IFrame.aspx
|