Iframe跨域

时间:2017-11-16 15:10:30

标签: javascript html iframe cross-domain

我有以下几页:

www.aaa.com/a.html

 <input onClick=parent.miFunction() />

www.bbb.com/b.html

<script>
miFunction(){
 alert("sss")
}
</script>
<iframe src="www.aaa.com/a.html"> </iframe>

有人按下www.aaa.com/a.html中的按钮时会发生问题。控制台记录以下错误:

live:1 Uncaught DOMException:阻止了一个包含起源的框架&#34; www.aaa.com&#34;从访问跨源框架。     在HTMLButtonElement.onclick(www.aaa.com/a.html:1:8)

谢谢!

0 个答案:

没有答案