jQuery Dialog部件
描述
Widget Dialog 函数可与 JqueryUI 中的小部件一起使用。对话框是在 HTML 页面上展示信息的一种好方式之一。对话框是带有标题和内容区域的浮动窗口。默认情况下,可以通过关闭按钮移动、调整大小和关闭这个窗口。
语法
这是使用对话框的简单语法 –
$( "#dialog" ).dialog();
示例
以下是一个简单的示例,展示了Dialog的使用方法:
<!doctype html>
<html lang = "en">
<head>
<meta charset = "utf-8">
<title>jQuery UI Dialog - Default functionality</title>
<link rel = "stylesheet"
href = "//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script type = "text/javascript"
src = "https://www.tutorialspoint.com/jquery/jquery-3.6.0.js">
</script>
<script type = "text/javascript"
src = "https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.3/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>
这将产生以下结果−