在网站中嵌入谷歌群组



我嵌入一个组到一个(非谷歌)网站,并得到一个空白页。

我已经添加了'Manage your Group'给出的代码,如下所示。

<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/the-sophia-club'
 + '&showsearch=true&showpopout=true&showtabs=false'
 + '&parenturl=' + encodeURIComponent(window.location.href);

我已尝试删除&父元素,但没有成功。

我也试过将代码保存在一个简单的html文档中,但它仍然给我一个空白页。

这是单页的代码…

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<p>Testing</p>
<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/the-sophia-club'
 + '&showsearch=true&showpopout=true&showtabs=false'
 + '&parenturl=' + encodeURIComponent(window.location.href);
</script>
</body>
</html>

有什么好主意吗?

问题是您的文档是xhtml而不是html。这两个标准是不同的,而且Google似乎不喜欢xhtml。

不幸的是,

xhtml似乎已经死了,所以尝试更改为html5。唯一需要修改的应该是doctype声明。

此外,当我使用web浏览器打开指向本地目录的页面时,嵌入不起作用。但是,当我将页面上传到web服务器时,它确实工作了。

相关内容

  • 没有找到相关文章

最新更新