0

我正在尝试使用 Google Apps 脚本在谷歌网站上制作轮播。此轮播包含可动态更改的文本消息。我正在使用 jquery 来实现这一点,但 GAS HtmlService api 无法评估该 js 脚本文件。

我在我的应用程序中使用了http://flexslider.com轮播。但它不起作用。我也尝试过使用 caja 游乐场,但它没有轮播实现 js 文件。我将所有必需的 js 文件上传到谷歌云存储并公开。

 <script type="text/javascript" src="http://commondatastorage.googleapis.com/shCore.js"></script>
 <script type="text/javascript" src="http://commondatastorage.googleapis.com/shBrushXml.js"></script>
<script type="text/javascript" src="http://commondatastorage.googleapis.com/shBrushJScript.js"></script>

 <!-- Optional FlexSlider Additions -->
<script src="http://commondatastorage.googleapis.com/jquery.easing.js"></script>
<script src="http://commondatastorage.googleapis.com/jquery.mousewheel.js"></script>
<script defer src="http://commondatastorage.googleapis.com/demo.js"></script>

有什么建议可以实施吗?

4

1 回答 1

1

这是因为 Caja 会清理脚本并从您的 js 中过滤一些代码。在这里查看详细信息。

或者,您可以使用 Google Drive Webhost 发布您的轮播,然后使用公开可用的 iFrame 小工具将其嵌入 Google 站点。在此处查看类似的演示 https://sites.google.com/site/appsdatepicker/test-page-2

于 2012-12-03T10:20:26.587 回答