码迷,mamicode.com
首页 > Web开发 > 详细

js调用父级frame中的方法

时间:2015-07-03 16:04:16      阅读:274      评论:0      收藏:0      [点我收藏+]

标签:js调用父级frame中的方法

父级frame中的方法:

function hideOutline() {
	$("#outline").hide();
	$("#content").attr("style", "width: 97%;");
	$(".replyUserList").find("table").attr("style", "left: 35px;");
	$("#showOutline").show();
}

子frame中的调用方式:

parent.window.hideOutline();

说明:

调用时window可以省略,比如parent.hideOutline();也可以,而且parent可以有多级,用于有多级frame的情况,比如:parent.parent.hideOutline();

版权声明:本文为博主原创文章,未经博主允许不得转载。

js调用父级frame中的方法

标签:js调用父级frame中的方法

原文地址:http://blog.csdn.net/zzm628/article/details/46740581

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!