sxmsxm.html
<script> function sonfun() { alert('ok'); } </script>
main.html
<iframe id="sxm" src="sxmsxm.html" width='100' height='100'></iframe>
在main.html中执行 sxmsxm.html中的sonfun() 有两种方式
1、 sxm.sonfun()
2、document.getElementById("sxm").contentWindow.sonfun();