jQuery UI库导入和使用

一 引入jQuery UI库
1 从:http://jqueryui.com/download/下载jQuery UI库到本地:
<link rel="stylesheet" href="[路径]/css/themename/jquery-ui.custom.css" />
<script src="[路径]/js/jquery.min.js"></script>
<script src="[路径]/js/jquery-ui.custom.min.js"></script>


2 使用CDN
Google CDN:
Uncompressed: http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.js
Compressed: http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js

MicroSoft CDN:
Uncompressed: http://ajax.aspnetcdn.com/ajax/jquery.ui/1.10.3/jquery-ui.js
Compressed: http://ajax.aspnetcdn.com/ajax/jquery.ui/1.10.3/jquery-ui.min.js

参见网站:http://blog.jqueryui.com/2013/05/jquery-ui-1-10-3/


更多内容参考:http://jqueryui.com/

3 jQuery UI中文文档:http://jqueryui.net/tutorial/

你可能感兴趣的:(jQuery UI库导入和使用)