誰能知道從j查詢網站,如裝載從jQuery的網站的jQuery-UI-1.7.2.custom.min
<script type="text/javascript" src="http://jqueryui.com/latest/jquery-1.3.2.js"></script>.
哪些鏈接,裝載jQuery的UI,1.7.2.custom.min jquery選項卡所需的所有.js文件。
誰能知道從j查詢網站,如裝載從jQuery的網站的jQuery-UI-1.7.2.custom.min
<script type="text/javascript" src="http://jqueryui.com/latest/jquery-1.3.2.js"></script>.
哪些鏈接,裝載jQuery的UI,1.7.2.custom.min jquery選項卡所需的所有.js文件。
您可以使用谷歌API的加載jQuery的:
<script src="http://www.google.com/jsapi"></script>
<script>
google.load("jquery", "1.3.2");
google.load("jqueryui", "1.7.2");
</script>
您需要確保在自定義構建中包含選項卡腳本。要執行此操作,請轉至http://jqueryui.com/download並勾選「選項卡」複選框。
這將產生一個包含圖像,CSS和JS文件的zip文件。
接下來,附加自定義jQuery UI文件,以及jQuery文件和相關的CSS文件。
然後訪問http://jqueryui.com/demos/tabs/並查看該演示的源代碼(點擊'查看源代碼')。它會給你創建標籤所需的標記。