在Google Apps腳本中,我試圖在模板HTML中使用jQuery。我收到以下錯誤:
ReferenceError: "$" is not defined.
的index.html
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
</head>
<body>
My favorite Google products:
<? var data = ['Gmail', 'Docs', 'Android']; ?>
<? $(data).each(function(){ ?>
<?= this ?>
<?}); ?>
</body>
</html>
Code.gs
function doGet() {
return HtmlService
.createTemplateFromFile('index')
.evaluate();
}
在我的情況。我錯誤地包含在我的腳本 – Nevermore