使用Google将jQuery的UI插入到页面中

时间:2009-06-30 18:31:25

标签: javascript jquery jquery-ui google-api

嘿所有,我目前使用Google的API将jQuery包含在我的网站中,如下所示:

<script src="http://www.google.com/jsapi"></script>
<script>google.load("jquery", "1.3.2");</script>

我如何为jQuery UI javascript和css文件完成同样的工作?

3 个答案:

答案 0 :(得分:14)

对于jQuery UI:

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js"></script>

这是最新版本。

答案 1 :(得分:6)

为了与您所希望的方式保持一致:

google.load("jquery", "1.3.2");
google.load("jqueryui", "1.7.2");

http://code.google.com/apis/ajaxlibs/documentation/index.html#jqueryUI

答案 2 :(得分:4)

由于您使用的是Google API,因此可以使用以下代码添加jQuery UI:

google.load("jqueryui", "1.5.3");

查看文档here

您需要在服务器上托管CSS主题。

托管您自己的CSS文件可让您创建完全自定义的主题,查看Theme Roller