每个人都曾试图在平淡的学习、工作和生活中写一篇文章。写作是培养人的观察、联想、想象、思维和记忆的重要手段。范文怎么写才能发挥它最大的作用呢?接下来小编就给大家介绍一下优秀的范文该怎么写,我们一起来看一看吧。
iframe 调用父页面js篇一
贵有恒何必三更眠五更起,最无益只怕一日曝十日寒。 以下是小编为大家搜索整理的iframe调用父页面的`方法,希望能给大家带来帮助!更多精彩内容请及时关注我们应届毕业生考试网!
1
();
//xxxxx()代表父页面方法
具体列子如下,其中包括easyui的右键和单击事件
body部分代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<
body
class
=
"easyui-layout"
>
<
span
data-options
=
"region:'west',split:true,title:'主题',iconcls:'icon-arrowin'"
style
=
"width: 270px; background: #efefef"
>
<
ul
id
=
"tree"
class
=
"easyui-tree"
>
ul
>
span
>
<
input
type
=
"hidden"
value
=
"${ }"
id
=
"themetype"
/>
<
span
data-options
=
"region:'center',title:'内容显示',iconcls:'icon-arrowout'"
style
=
"overflow: hidden"
>
<
iframe
name
=
"leftiframe"
id
=
"leftiframe"
src
=
""
frameborder
=
"0"
height
=
"100%"
width
=
"100%"
>
iframe
>
span
>
<
span
id
=
rightclimean
class
=
"easyui-menu"
style
=
"width:120px;"
>
<
span
onclick
=
"updatetheme();"
data-options
=
"iconcls:'icon-edit'"
>修改
span
>
<
span
onclick
=
"removeobjectnode();"
data-options
=
"iconcls:'icon-tip'"
>删除
span
>
span
>
<
script
type
=
"text/javascript"
>
loadtree();
script
>
body
>
js部分:
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
2023年 iframe 调用 页面 js 汇总