jQuery UI组件介绍
简介
jQuery UI是一个基于jQuery库的用户界面组件库,提供了丰富的交互效果和主题样式,可以轻松创建具有专业外观和交互效果的Web应用程序。
jQuery UI包含了各种常见的用户界面组件,包括但不限于:
- 按钮(Button)
- 对话框(Dialog)
- 下拉菜单(Dropdown)
- 选项卡(Tabs)
- 折叠面板(Accordion)
- 自动完成(Autocomplete)
- 日历(Datepicker)
- 滑块(Slider)
- 进度条(Progressbar)
- 排序(Sortable)
- 拖拽(Draggable)
- 改变大小(Resizable)
- 选择(Selectable)
- 提示(Tooltip)
用法
使用jQuery UI非常简单,只需在HTML页面引用jQuery和jQuery UI的js和css文件即可:
<!DOCTYPE html>
<html>
<head>
<title>jQuery UI简单示例</title>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
</head>
<body>
<!-- 这里放置你的jQuery UI组件 -->
</body>
</html>
然后,在需要使用jQuery UI组件的地方,按照对应的示例代码使用即可。
示例
对话框(Dialog)
对话框是一个弹出框,用于显示重要信息或者交互提示。下面是一个简单的对话框示例代码:
<!DOCTYPE html>
<html>
<head>
<title>jQuery UI对话框示例</title>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
</head>
<body>
<button id="open-dialog">打开对话框</button>
<div id="dialog" title="对话框标题">
<p>这是对话框内容</p>
</div>
<script>
$(function() {
$('#open-dialog').click(function(){
$('#dialog').dialog();
});
});
</script>
</body>
</html>
点击打开对话框按钮即可显示对话框。
自动完成(Autocomplete)
自动完成是一种用户输入文本时,通过提示框自动匹配文本的交互方式。下面是一个自动完成示例代码:
<!DOCTYPE html>
<html>
<head>
<title>jQuery UI自动完成示例</title>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
</head>
<body>
<label for="autocomplete">自动完成测试</label>
<input id="autocomplete">
<script>
$(function() {
var availableTags = [
"ActionScript",
"AppleScript",
"Asp",
"BASIC",
"C",
"C++",
"Clojure",
"COBOL",
"ColdFusion",
"Erlang",
"Fortran",
"Groovy",
"Haskell",
"Java",
"JavaScript",
"Lisp",
"Perl",
"PHP",
"Python",
"Ruby",
"Scala",
"Scheme"
];
$("#autocomplete").autocomplete({
source: availableTags
});
});
</script>
</body>
</html>
在输入框中输入文本即可自动匹配提示。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:jQuery UI组件介绍 - Python技术站