0

我想在我的 Google 网站中包含一些来自 ShareThis.com 的分享按钮。ShareThis 创建了此代码以包含在 head 部分中:

<script type="text/javascript">var switchTo5x=true;</script>
<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script>
<script type="text/javascript" src="http://s.sharethis.com/loader.js"></script>

为了让它进入我的 Google-Site,我用 Google-Apps-Script 编写了这个程序并执行了它:

function myFunction() {
  var headers = {"A": "<script type=\"text/javascript\">var switchTo5x=true;</script>",
                 "B": "<script type=\"text/javascript\" src=\"http://w.sharethis.com/button/buttons.js\"></script>",
                 "C": "<script type=\"text/javascript\" src=\"http://s.sharethis.com/loader.js\"></script>"};

  UrlFetchApp.fetch("sites.google.com/site/mysitename/home",
                {"headers": headers, "method": "post"});
}

没有出现错误消息,但它不会在站点的源代码中显示任何结果。

有人可以给我一个提示吗?

4

1 回答 1

0

Google 不允许编辑 head 部分。免费服务有其局限性。耻辱。我还想添加一些脚本。

于 2015-09-16T04:33:07.307 回答