百度上搜索都知道调用iframe下的js都是用
document.getElementById('iframe_id').contentWindow.iframe_function()
有的情况下 iframe,是不可见的,此时需要注意一个问题
设置iframe不可见 style="display:none" 时,运用上面js在ie,chrome下均能运行,而在firefox下面无效,js也不会报错
相反,iframe可见时,这个js是可以正常运作的
若需要不可见情况下调用js,不要运用 display:none 设置,直接 用 width=0,height=0属性来设置,js才能正常运作