1

我只是想将 Google+ 共享插件添加到应用程序中,它在 Firefox 中运行良好,但在 IE 中出现以下错误 - “抛出异常且未捕获”

以下是我在 Firefox 和 IE 上运行的非常基本的代码,在 Firefox 中运行良好,但在 IE9 中死亡:

<html>
<head>

<!-- Place this tag in your head or just before your close body tag. -->
<script type="text/javascript" src="https://apis.google.com/js/plusone.js">
  {lang: 'en-GB', parsetags: 'onload'}
</script>

</head>
<body>

<!-- Place this tag where you want the share button to render. -->
<div class="g-plus" data-action="share" data-annotation="bubble" data-height="24"></div>

<!-- Place this render call where appropriate. -->
<script type="text/javascript">gapi.plus.go();</script>

</body>
</html>

在这方面的任何帮助将不胜感激,或者如果您可以将我重定向到可以给我一些见解的人,将不胜感激。

非常感谢,

玛丽奥康纳

4

1 回答 1

1

您看到的问题是一个错误。共享按钮抛出异常,因为您的测试页面没有 DTD。将此添加到页面的第一行:

<!DOCTYPE html>

现在你的分享按钮可以工作了:)

我已在 Google+ 平台问题跟踪器中提交了此错误。您可以为它加注星标以订阅更新。

于 2012-04-25T16:07:38.440 回答