对于H5 提供的full creen api,实现iframe 全屏显示问题

前提:页面一个iframe(id=iframe1) 引用了一个页面 a.html,在a.html 里面有个iframe(id=iframe2)引用了b.html
那么我在b.html 里面实现 iframe2 全屏

 function toggleFullscreen(){
                var iframe = document.getElementById("iframe2");
                launchFullScreen(iframe); 
            }

            function launchFullScreen(element){  
                if (element.requestFullScreen) {
                    element.requestFullScreen();
                } else if (element.mozRequestFullScreen) {
                    element.mozRequestFullScreen();
                } else if (element.webkitRequestFullScreen){
                    element.webkitRequestFullScreen();
                }
            }

代码如上,无法使iframe2 全屏,谁遇到过这种情况呀 ,是不是这样实现不了里层iframe 的全屏显示

iframe不行,只能最顶层