想知道我们是否可以在Google App Script中使用jquery插件?我试图使用jquery tablesorter写一个简单的html表,但它不起作用。 html呈现样式但表中没有tablesorter函数。当我单击标题时,它会假设对表进行排序,但单击每个标题时不执行任何操作。我将完全相同的代码复制并粘贴到.html中并在我的wampserver上测试它并且它可以工作。我的代码如下。有什么建议吗?
<html>
<head>
<link rel="stylesheet" href="http://tablesorter.com/themes/blue/style.css" type="text/css" media="print, projection, screen" />
<script type="text/javascript"src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>
<script type="text/javascript" src="http://tablesorter.com/__jquery.tablesorter.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#myTable").tablesorter();
});
</script>
</head>
<body>
<table id="myTable" class="tablesorter">
<thead>
<tr>
<th>Last Name</th>
<th>First Name</th>
<th>Email</th>
<th>Due</th>
<th>Web Site</th>
</tr>
</thead>
<tbody>
<tr>
<td>Smith</td>
<td>John</td>
<td>jsmith@gmail.com</td>
<td>$50.00</td>
<td>http://www.jsmith.com</td>
</tr>
<tr>
<td>Bach</td>
<td>Frank</td>
<td>fbach@yahoo.com</td>
<td>$50.00</td>
<td>http://www.frank.com</td>
</tr>
<tr>
<td>Doe</td>
<td>Jason</td>
<td>jdoe@hotmail.com</td>
<td>$100.00</td>
<td>http://www.jdoe.com</td>
</tr>
<tr>
<td>Conway</td>
<td>Tim</td>
<td>tconway@earthlink.net</td>
<td>$50.00</td>
<td>http://www.timconway.com</td>
</tr>
</tbody>
</table>
</body>
</html>
答案 0 :(得分:0)
jQuery插件有明确的限制,但HtmlService使用的Caja引擎如果使用不安全的操作,可能会拒绝JavaScript库。如评论中所述,使用Caja Playground查看您的HTML和JavaScript是否通过验证。