3

我正在尝试在页面上实现 ShareThis 按钮,但无法获得在 FF 或 Chrome、win 7 或 Vista 上工作的基本选项。

Chrome 没有插件。已禁用 FF 插件。

不确定问题是我犯了一些愚蠢的错误,还是与 ShareIt JS 代码有关。

步骤:
1. 注册
2. 访问http://sharethis.com/publishers/get-sharing-tools
3. 完成 3 个步骤(更改:添加 Pinterest 并删除 ShareThis 按钮
4. 创建一个 html 文件并粘贴代码

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
   <head>
      <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
      <meta http-equiv="Content-Language" content="en-us" />
      <script type="text/javascript">var switchTo5x=true;</script>
      <script type="text/javascript" src="http://w.sharethis.com/button/buttons...; /script>
      <script type="text/javascript">stLight.options({publisher: 'beea8274-700e-4d53-aeff-393478c86a40'}); </script>
   </head>
   <body>
      <span class='st_facebook_large' displayText='Facebook'></span>
      <span class='st_twitter_large' displayText='Tweet'></span>
      <span class='st_linkedin_large' displayText='LinkedIn'></span>
      <span class='st_pinterest_large' displayText='Pinterest'></span>
      <span class='st_email_large' displayText='Email'></span>
   </body>
</html>

在 Firefox 中加载页面时,我得到 SyntaxError:指定了无效或非法字符串。电子邮件按钮弹出窗口只显示“正在加载....”,而“选择一个或多个目的地:”没有选项。

为此拉了很多头发。

谢谢

4

1 回答 1

3

在浏览器上测试之前,您是否在服务器上部署了 html 文件。如果您通过放置在桌面或其他文件夹上直接测试 html 文件,那么它将不起作用。您需要将 html 文件部署到服务器,例如:Tomcat 或任何您喜欢的服务器。

于 2012-07-23T05:40:33.330 回答