嘿,我目前使用谷歌的API,包括jQuery的到我的網站是這樣的:插入jQuery的UI到頁面上,使用谷歌
<script src="http://www.google.com/jsapi"></script>
<script>google.load("jquery", "1.3.2");</script>
我將如何完成相同的jQuery UI的JavaScript和CSS文件?
嘿,我目前使用谷歌的API,包括jQuery的到我的網站是這樣的:插入jQuery的UI到頁面上,使用谷歌
<script src="http://www.google.com/jsapi"></script>
<script>google.load("jquery", "1.3.2");</script>
我將如何完成相同的jQuery UI的JavaScript和CSS文件?
對於你這樣做的方式一致性你想要的:
google.load("jquery", "1.3.2");
google.load("jqueryui", "1.7.2");
http://code.google.com/apis/ajaxlibs/documentation/index.html#jqueryUI
對於jQuery用戶界面:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js"></script>
這是最新版本。
由於您使用的谷歌API,你可以包括jQuery UI的使用下面的代碼:
google.load("jqueryui", "1.5.3");
檢查文檔here。
您需要在服務器上託管CSS主題。
託管自己的CSS文件可讓您創建完全自定義的主題,看看Theme Roller。