情况描述:
第一种
用window.open弹出的子页面,若期望带回参数并执行父页面的js方法,
window.opener.GetSelUser(id, name);//GetSelUser为父页面的方法。
第二种
父页面为A,用window.open打开子页面B,B中frameset左右分,右边的页面为C,C若想调用A中的JS方法,直接调用好像不行,提示JS权限不够,可能我的方法不对,我的解决方法是C先调用B中的方法,通过B再去调用A中的方法。
C调用B的方法:window.parent.GetSelUser(userid, username);
B调用A的方法:window.opener.GetSelUser(id, name);
来自 http://hi.baidu.com/moniteryao/item/d942c500d170d87ebfe97e05