获取子页面dom:$("iframe").eq(0).contents().find("selector") 调用子页面js变量和方法:$("iframe").eq(0)[0].contentWindow.method()
以jquery为例,假如子iframe为
obj = $("iframe").eq(0)现在obj为jquery对象
获取子页面dom
// selector为你的jquery选择器
obj.contents().find("selector")
调用子页面js变量和方法
iframeWin = obj[0].contentWindow //子页面窗口对象
iframeWin.method(); // 子页面方法
iframeWin.variable; // 子页面全局变量