<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>jQuery UI Button 示例</title>
<!-- 引入 jQuery 库 -->
<script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
<!-- 引入 jQuery UI 库 -->
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<style>
/* 自定义样式可以在这里添加 */
.button {
margin: 10px;
}
</style>
</head>
<body>
<!-- 普通按钮 -->
<button class="button" id="normal-button">普通按钮</button>
<!-- jQuery UI 按钮 -->
<button class="button" id="jquery-ui-button">jQuery UI 按钮</button>
<script>
// 在文档加载完成后执行代码
$(document).ready(function() {
// 将普通按钮转换为 jQuery UI 按钮
$("#jquery-ui-button").button();
});
</script>
</body>
</html>
这个示例中包含了以下几个关键点:
1. 引入 jQuery 库和 jQuery UI 库。
2. 在页面中创建两个按钮,一个是普通的 HTML 按钮,另一个是使用类名 .button 和 id="jquery-ui-button" 的按钮。
3. 使用 jQuery 的 $(document).ready() 函数确保文档加载完成后再执行代码。
4. 在脚本中调用 $("#jquery-ui-button").button() 方法,将具有指定类名和 ID 的按钮转换为 jQuery UI 按钮。
您可以将这个代码段保存为 HTML 文件并在浏览器中打开,以查看按钮的效果。jQuery UI 按钮将自动应用样式,并具有与普通按钮不同的外观和行为。
转载请注明出处:http://www.zyzy.cn/article/detail/13063/jQuery UI