iframe在Firefox和Google Chrome中都显示为空白



我正试图在我的网站中实现一个谷歌小组,但出现了空白。我知道我的浏览器是受支持的,因为我可以查看其他嵌入的谷歌群组。

<iframe id="forum_embed"
src="javascript:void(0)"
scrolling="no"
width="900"
height="700">
</iframe>
<script type="text/javascript">
document.getElementById('forum_embed').src =
 'https://groups.google.com/forum/embed/?place=forum/artemis-moonlight'
 + '&showsearch=true&showpopout=true&showtabs=false'
 + '&parenturl=' + encodeURIComponent(window.location.href);
</script> 

这是我正在使用的代码,直接来自谷歌群组网站,但无论是网络浏览器,我得到的都是。。。http://puu.sh/lq4ZZ/85db1278b5.png

这是一个使用您的确切代码的jsFiddle,它正在工作,所以我不确定会发生什么。

也许你可能需要调查一些.htaccess问题或其他可能在你的主机上存在的服务器限制

html

   <iframe id="forum_embed"
    src="javascript:void(0)" scrolling="no" width="900" height="700">
    </iframe>

js

    document.getElementById('forum_embed').src =
 'https://groups.google.com/forum/embed/?place=forum/artemis-moonlight'
 + '&showsearch=true&showpopout=true&showtabs=false'
 + '&parenturl=' + encodeURIComponent(window.location.href);  

https://jsfiddle.net/happymacarts/6sh1edmf/

相关内容

  • 没有找到相关文章

最新更新