本家サイトからjQuery UIをダウンロードする。
jQuery UI
https://jqueryui.com/
- Stable v1.11.4 jQuery 1.6+
jquery-ui-1.11.4.zip - Stable (Themes) v1.11.4 jQuery 1.6+
jquery-ui-themes-1.11.4.zip
ひな形
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<!doctype html> <html lang="us"> <head> <meta charset="utf-8"> <title>jQuery UI Example Page</title> <link href="css/smoothness/jquery-ui.css" rel="stylesheet"> </head> <body> ... <script src="js/jquery.js"></script> <script src="js/jquery-ui.js"></script> </body> </html> |