这次给大家带来iframe父与子窗体相互调用(附代码),iframe父与子窗体相互调用的注意事项有哪些,下面就是实战案例,一起来看一下。
父窗体
<html>
<head>
<title>usually function</title>
</head>
<body>
<iframe src="http://www.baidu.com" ></iframe>
<iframe src="myifame.html" id="name_iframe" name="name_iframe"></iframe>
<button value="buttonvalue" id="testid">buttonvalue</button>
</body>
<html>
<script type="text/javascript" src="jquery-1.4.4.js"></script>
<script>
//contentWindow这个属性,相当于获取iframe网页里面的window对象
$(function(){
//父窗体获取子窗体的变量
alert(document.getElementById("name_iframe").contentWindow.vname);//父窗体获取子窗体的方法
document.getElementById("name_iframe").contentWindow.test();//父窗体获取子窗体的内容
alert(document.getElementById("name_iframe").contentWindow.document.body.outerHTML);
});
var myname="hb";
function parentFunction(){
alert("parentFunction");
}
</script>子窗体
<html>
<head>
<title>usually function</title>
</head>
<body>
<button onclick="getParentContent()">getParentContent</button>
</body>
<html>
<script type="text/javascript" src="jquery-1.4.4.js"></script>
<script>
var vname="v_name";
function test(){
alert("function test");
}
function getParentContent(){
//获取父窗体的变量
alert(window.parent.myname);
//获取父窗体的方法
window.parent.parentFunction();
//获取父窗体的dom节点
alert(parent.document.getElementById("testid").value);
}
</script>相信看了本文案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!
推荐阅读:
以上就是iframe父与子窗体相互调用(附代码)的详细内容,更多请关注php中文网其它相关文章!
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号