简要咨询咨询QQ网站导航网站搜索手机站点联系我们设为首页加入收藏 

iframe 在父页面调用子页面的JS方法

来源:易贤网   阅读:759 次  日期:2014-09-11 11:53:23

温馨提示:易贤网小编为您整理了“iframe 在父页面调用子页面的JS方法”,方便广大网友查阅!

父页面:parent.html

代码如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>parent</title>

<script>

function parentFunction() {

alert('function in parent');

}

function callChild() {

child.window.childFunction();

/*

child 为iframe的name属性值,

不能为id,因为在FireFox下id不能获取iframe对象

*/

}

</script>

</head>

<body>

<input type="button" name="call child" value="call child" onclick="callChild()"/>

<br/><br/>

<iframe name="child" src="./child.html" ></iframe>

</body>

</html>

子页面:child.html

代码如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>child</title>

<script>

function childFunction() {

alert('function in child');

}

function callParent() {

parent.parentFunction();

}

</script>

</head>

<body>

<input type="button" name="call parent" value="call parent" onclick="callParent()"/>

</body>

</html>

更多信息请查看IT技术专栏

更多信息请查看脚本栏目
点此处就本文及相关问题在本站进行非正式的简要咨询(便捷快速)】     【点此处查询各地各类考试咨询QQ号码及交流群
上一篇:JS中attr和prop属性的区别以及优先选择示例
下一篇:利用javascript实现禁用网页上所有的控件
易贤网手机网站地址:iframe 在父页面调用子页面的JS方法
由于各方面情况的不断调整与变化,易贤网提供的所有考试信息和咨询回复仅供参考,敬请考生以权威部门公布的正式信息和咨询为准!