推荐开源项目:jQuery UI
jQuery UI 是一套基于 jQuery 的用户界面交互、视觉效果、小部件等的开源库。它提供了丰富的界面元素,如对话框、拖拽、放置、自动完成等,使开发者能快速创建丰富的网页界面。
以下是一个简单的使用 jQuery UI 中的 Dialog 组件的例子:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>jQuery UI Dialog Example</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>
<script>
$(function() {
$("#dialog").dialog();
});
</script>
</head>
<body>
<div id="dialog" title="Basic Dialog">
<p>This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.</p>
</div>
</body>
</html>
在这个例子中,我们引入了必要的 jQuery 和 jQuery UI 库,并创建了一个带有标题的对话框。页面加载完成后,对话框自动以默认设置显示。
评论已关闭