0

我正在写一个小的谷歌小工具,我怎么能包含 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 库。

谢谢

4

2 回答 2

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>
于 2012-06-07T07:15:23.460 回答
0

最简单的方法是编写内联脚本。即,您可以将 jquery.js 的内容(内容几乎不超过 100 行)放在<script>//paste raw script here!..</script>文件本身的标签下。

于 2014-04-10T12:13:04.667 回答