0

在一个随机实验中,我想通过 iframe 显示我在另一台服务器上运行的 Ruby 应用程序。

<html>

<body>
<iframe src="http://192.155.83.120:5000/r/2" width="800px" height="800px"></iframe>
</body>

</html>

没有运气,变成空白。

ruby 应用程序的代码中是否存在阻止它在 iframe 中正确显示的内容?

4

1 回答 1

1

iframe 将仅支持文件名的确切路径......比如

<iframe src="http://192.155.83.120:5000/r/2/index.html" width="800px" height="800px"></iframe>
于 2012-12-18T07:07:09.240 回答