jQuery无法在Google Apps脚本上运行

时间:2018-10-18 08:38:09

标签: jquery google-apps-script

我使用模板HTML文件从Google AppsScript输出网页。 我使用return HtmlService.createHtmlOutputFromFile('listview'); 在listview.html文件的空白处,我有一个链接到jquery库:

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css" />
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>

如果我在浏览器上独立运行html模板,则Web正确且jquery已连接,但我使用google appscript在web运行,但未在jquery库连接

为什么我无法连接jquery库?

可以帮助我 谢谢