我担心我面临与以前的海报相同的挑战:
嵌入 Google 群组 - 未登录 Google 时不显示任何内容
以及 如何将谷歌群组嵌入网页
第一个解决了,第二个没有解决。
想将 google-group 论坛嵌入到 html 页面中。按照 Google Groups 提供的指导,我无法做到这一点iframe
:
<iframe id="forum_embed"
src="javascript:void(0)"
scrolling="no"
frameborder="0"
width="900"
height="700">
</iframe>
<script type="text/javascript">
document.getElementById('forum_embed').src =
'https://groups.google.com/forum/embed/?place=forum/test-distance'
+ '&showsearch=true&showpopout=true&showtabs=false'
+ '&parenturl=' + encodeURIComponent(window.location.href);
</script>
并通过http://www.jqcoolgallery.com/support.html成功展示。我可以查看这个嵌入式论坛,但是在我的 html 中应用相同的语法时,我没有成功。
在 Firefox 27 或 Internet Explorer 11 中查看时,我同样缺乏成功。