首页 > 开发 > JS > 正文

javascript iframe内的函数调用实现方法

2024-09-06 12:45:36
字体:
来源:转载
供稿:网友
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();
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表