为什么我的iFrame重定向到其他页面

时间:2013-12-20 17:03:53

标签: javascript php mysql redirect iframe

我正在制作一个带有小型无线电在线播放器的小网站,收音机是波哥大的本地电台...我正在使用此代码获取播放器:

<iframe src="http://ec2-54-196-129-174.compute-1.amazonaws.com/radio_player/code.php?t=id&amp;code=q6avqg==" style="width: auto;height: auto;float: right;clear: both;display: block;min-height: 200px;overflow: auto;padding: 0px;margin: 0px;" border="0">

我正在使用PHP从mySQL BD中获取它并将其打印到我的页面中...当我将其运行到localhost时,它运行正常,但是当我将脚本上传到网站时,iFrame重定向到其他x页面......为什么会这样?

2 个答案:

答案 0 :(得分:1)

你可能想试试这个......

<iframe src="http://www.example.com" sandbox=""></iframe>

sandbox可以有像allow-forms allow-scripts这样的参数,但是你可以保持简单的=“”来保存你的日子.. !! :)

答案 1 :(得分:0)

您用于iframe的网址响应:

<script type='text/javascript'>
    top.location.href='http://www.emisorasdominicanasonline.com';
</script>
<noscript>
    <meta HTTP-EQUIV="REFRESH" content="0; url=http://www.google.com/">
</noscript>

我不清楚为什么noscript将浏览器发送到与脚本标记不同的地方,但这就是你看到结果的原因。