这是我的代码http://my-localhost.com/iframe-test.html
<html>
<head><title>Welcome Iframe Test</title></head>
<body>
<iframe src="http://www.my-website.com/index.html" width="500" height="500"></iframe>
<script type="text/javascript">
function alertMyMessage(msg){
alert(msg);
}
</script>
</body>
</html>
这是代码http://www.my-website.com/index.html
<html>
<head></title>Welcome to my Server</title></head>
<body>
<h1>Welcome to My Server</ht>
<a href="javascript:void(0)" title="Click here" onClick="parent.alertMyMessage('Thanks for Helping me')">Click Here</a>
</body>
</html>
当我单击“单击此处”链接时。我得到以下错误。
未捕获的安全错误:阻止具有来源“ http://www.my-website.com ”的框架访问具有来源“ http://my-localhost.com ”的框架。协议、域和端口必须匹配。
请帮助我解决此问题,或为此提供其他解决方案。