我正在写一个小的谷歌小工具,我怎么能包括jquery库? 小工具以这种方式出现:
<?xml version="1.0" encoding="UTF-8"?>
<Module>
<ModulePrefs title="hello world example" />
<Content type="html"><![CDATA[
code here!
]]></Content>
</Module>
可以包含css和javascript,但我不知道如何包含jquery库。
由于
答案 0 :(得分:0)
<?xml version="1.0" encoding="UTF-8"?>
<Module>
<ModulePrefs title="hello world example" />
<Content type="html"><![CDATA[
<script src="//code.jquery.com/jquery-latest.min.js"></script>
code here!
]]></Content>
</Module>
答案 1 :(得分:0)
最简单的方法是编写内联脚本。也就是说,您可以在文件本身的<script>//paste raw script here!..</script>
标记下放置jquery.js的内容(内容非常少于几百行)。