Contents
前面介紹了jQuery的基本用法,jQuery UI 是一套 JavaScript 函式庫,提供抽象化、可自訂主題的 GUI 控制項與動畫效果。基於 jQuery JavaScript 函式庫,可用來建構互動式的Web應用。
它的基本功能有:
jQuery UI 的所有控制項都能自訂主題樣式。
下圖為使用jQuery UI一些UI組件
後面的例子,我們依然是visual studio 作為開發IDE,從http://jqueryui.com 現在最新版的 jQuery 庫,並支持的主題,創建一個jQueryUIDemo項目:
scripts目錄存放jquery core, jquery ui 庫文件, themes目錄存放jQuery 自帶的主題,你可以選擇你喜歡的主題,本教程使用其中的「trontastic」主題。創建一個預設的Default.html 作為測試頁面,如下定義:
<!doctype html> <html lang="en"> <head> <meta charset="utf-8" /> <title>jQuery UI Demos</title> <link rel="stylesheet" href="themes/trontastic/jquery-ui.css" /> <script src="scripts/jquery-1.9.1.js"></script> <script src="scripts/jquery-ui-1.10.1.custom.js"></script> <script> $(function () { }); </script> </head> <body> </body> </html>
其中<
link
rel
=
"stylesheet"
href
=
"themes/trontastic/jquery-ui.css"
/> 指明使用的主題,後面引用jQuery core, jQuery UI庫。