jQuery UI教程
面向初学者和专业人士的jQuery UI教程提供了有关jQuery UI交互,小部件,效果和实用程序的深入知识。
jQuery UI优势
适用于高度交互的Web应用程序
开源且免费使用
强大的主题机制
稳定且易于维护
广泛的浏览器支持
jQuery UI示例
在本教程中,您将获得很多jQuery UI示例以很好地理解该主题。让我们看一个简单的jQuery UI示例。
文件: jqueryuidraggable1.html
<!DOCTYPE html>
<head>
<link href="http://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css" rel="stylesheet">
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<style>
#draggable { width: 100px; height: 100px; padding: 0.5em; background:#7fffd4;}
</style>
<script>
$(function() {
$( "#draggable").draggable();
});
</script>
</head>
<body>
<div id="draggable" class="ui-widget-content">
<p>I am draggable!</p>
</div>
</body>
</html>
jQuery UI索引
jQuery
jQuery UI 教程
jQuery 交互
先决条件
在学习jQuery UI之前,您必须具有JavaScript的基本知识。