6

我在将松弛提要嵌入到 html 站点时遇到问题。当我尝试使用 iframe 时,它​​只是显示为一个白框。我尝试过使用 jquery

<!DOCTYPE html>
<html>
  <head>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"> .       
    </script>
    <script>
$("#testLoad").load("http://www.SlackURLHere");
    </script>
  </head>
  <body>

    <div id="testLoad"></div>

    <iframe src="http://www.SlackURLHere"></iframe>
  </body>
</html>

我在 iframe 和 jquery 上都尝试过使用“http”“https” ,但没有成功。:(所以如果你有任何其他方法请分享!

谢谢

4

2 回答 2

8

刚刚试过这个,看起来它不会显示的原因是因为 slack.com 将 X-Frame-Options 标头设置为 SAMEORIGIN。换句话说,您只能在 slack.com 上嵌入该页面,而不能在其他任何地方嵌入。

于 2016-02-26T17:06:16.140 回答
-3

您忘记关闭iframe source. 否则它会起作用你也太早地关闭了div。在 iframe 之后而不是之前关闭它。看到这个小提琴

iframe 图片

于 2015-08-17T01:56:43.873 回答