📅  最后修改于: 2023-12-03 15:02:13.068000             🧑  作者: Mango
jQuery UI是一个基于jQuery的UI库,它带来了很多插件和效果,可以帮助开发人员创建出漂亮、交互丰富的Web应用程序,更重要的是,jQuery UI是免费的,使用起来非常方便。
以下是一些常用的jQuery UI插件:
以下是一个使用jQuery UI的按钮示例代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>jQuery UI Button Example</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
<script>
$( function() {
$( "button" ).button();
} );
</script>
</head>
<body>
<button>Hello, World!</button>
</body>
</html>
解释如下:
head
标签中引入jQuery和jQuery UI库的CSS和JS文件;<button>
标签上调用button()
函数,将其转换为jQuery UI按钮。