博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
调用iframe中父页面/子页面中的JavaScript方法
阅读量:6040 次
发布时间:2019-06-20

本文共 1238 字,大约阅读时间需要 4 分钟。

今天做公司的内部流程系统,发现一问题。怎么调用iframe外面的方法呢?于是百度了一下,呵呵,把搜索结果摘抄下来。 转自: 作者:pocky 说明:假设有2个页面,index.html和inner.html。其中index.html中有一个iframe,这个iframe的src指向inner.html。 我们现在要做的就是: 1.在index.html中调用inner.html上的一个js方法 2.在inner.html中调用index.html上的一个js方法 实现代码如下: index.html 1.<html> 2.<head> 3.<script type="text/javascript"> 4.function ff(){ 5.alert(">>this is index's js function"); 6.} 7.</script> 8.</head> 9.<body> 10.<div style="background: lightblue;"> 11.This is index page. 12.<input type="button" value="run index's function" οnclick="ff();" /> 13.<input type="button" value="run inner page's function" οnclick='window.frames["childPage"].ff();' /> 14.</div> 15.<iframe id="childPage" name="childPage" src="inner.html" width="100%" frameborder="0"></iframe> 16.</body> 17.</html> inner.html 1.<html> 2.<head> 3.<script type="text/javascript"> 4.function ff(){ 5.alert(">>this is inner page's js function"); 6.} 7.</script> 8.</head> 9.<body> 10.<div style="background: lightgreen;"> 11.This is inner page. 12.<input type="button" value="run index's function" οnclick='parent.window.ff();' /> 13.<input type="button" value="run inner page's function" οnclick="ff();" /> 14.</div> 15.</body> 16.</html>

转载于:https://www.cnblogs.com/woaic/p/3942910.html

你可能感兴趣的文章
React.js入门必须知道的那些事
查看>>
yum安装qt
查看>>
部署Cloudstack环境(cloudstack manager+kvm,适合RHEL/CentOS)
查看>>
Pongo网页版JavaScript源代码及设计思路
查看>>
通过两个例子来理解js中的命令模式
查看>>
对于红帽来说如何使用yum
查看>>
Win2003系统日志,时间服务有 86400 秒没有与系统时间同步
查看>>
判断_variant_t变量是否为空
查看>>
Win8快捷键及命令大全
查看>>
CentOS 5.x 系统下使用yum 升级php到5.2.x
查看>>
我今天用到的 Hibernate 方法记录
查看>>
python 如何引入自己的模块
查看>>
mysql常用操作,不断更新,留着备用
查看>>
模拟智能DNS实验
查看>>
Python学习笔记(三)多线程的使用
查看>>
Servlet
查看>>
Java Web Application 自架构 一 注解化配置
查看>>
Java 调用js
查看>>
Xms Xmx PermSize MaxPermSize 区别
查看>>
cron表达式详解
查看>>