如何在html iframe中打开/使用具有非标准端口的URL?

时间:2016-02-24 12:49:04

标签: php html iframe

我无法查看来自http://www.example.com:9999元素的网址:<iframe>的网页,其中包含非标准端口9999.

并且可以从浏览器访问此URL(http://www.example.com:9999)。

以下是我使用的示例html代码:

<html>
<head>
    <title>Iframe test</title>
</head>
<body>
    <div>
        <iframe src="http://www.example.com:9999" frameborder="0" height="100%" width="100%"></iframe>
    </div>
</body>
</html>


但是,当我尝试在src属性<iframe>中使用具有标准端口(如:80)的网址时,这非常有效

那么有没有办法在src的{​​{1}}属性中使用包含非标准端口的网址。

1 个答案:

答案 0 :(得分:0)

我认为这源于相同的原始政策,请参阅此question

用于主页的端口&amp; iframe应该是一样的。您可以使用window.postMessage

解决此问题