document.getElementById("iframeID").contentWindow.子级页面方法();
<body> <h3>父页面</h3> <iframe?id="iframebb"?src="b.html"?></iframe> <br> <script> function?ff(){ alert("这里是父页面ff的方法"); } function?tt(){ document.getElementById("iframebb").contentWindow.bb(); }? </script> <input?type="button"?value="调用子页面方法"?οnclick="tt()"?/> </body> </html>