首页 > 代码库 > iframe

iframe

var ifr = document.getElementById(‘ifr‘);

var win = ifr.window || ifr.contentWindow;
win.a(); // 调用iframe中的a函数

iframe