6

这有效:

<script src="http://code.jquery.com/jquery-1.5.min.js" type="text/javascript"></script>
<script src="http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.js" type="text/javascript"></script>

但我更喜欢语法:

<script src="http://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load("jquery", "1", {uncompressed:true});
</script>

在发展的同时。

问:我可以使用 google.load 命令加载 jQuery mobile 吗?

4

1 回答 1

9

据推测,Google Libraries API 将仅支持其文档中列出的库,因为Google Loader API不包含任何有关包含您自己的库链接的信息。

因此得出的结论是,目前无法将 jQuery Mobile 包含在 Google Loader 中。您是否考虑过诸如head.js 之类的替代方案?

于 2011-06-22T03:54:38.597 回答