用于将Google群组附加到我的网站的HTML代码

时间:2012-04-29 08:06:21

标签: html web

我想将Google群组添加到我的网站。有没有办法做到这一点?请帮忙。我需要HTML代码才能将此论坛附加到我的网站。

1 个答案:

答案 0 :(得分:1)

您可以使用iframe和一些JavaScript

<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/forum-name" +
  "&showsearch=true&showpopout=true&parenturl=" +
  encodeURIComponent(window.location.href);
</script>

其中forum-name是您的Google网上论坛的名称

详细了解here

有关组foresite

的信息,请参阅此jsFiddle example