的方法可以通过以下步骤实现:
<!DOCTYPE html>
<html>
<head>
<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.js"></script>
</head>
<body>
<div id="dialog" title="对话框标题">
<iframe id="iframe" src="https://example.com"></iframe>
</div>
<script>
$(document).ready(function() {
$("#dialog").dialog({
autoOpen: false,
modal: true,
width: 800,
height: 600
});
$("#open-dialog").click(function() {
$("#dialog").dialog("open");
});
$("#close-dialog").click(function() {
$("#dialog").dialog("close");
});
});
</script>
</body>
</html>
dialog()
方法创建对话框。设置autoOpen
为false
以便初始时不显示对话框。使用modal
选项创建一个模态对话框,禁止用户与页面其他部分进行交互。可以根据需要设置对话框的宽度和高度。dialog("open")
方法来打开对话框。<button id="close-dialog" onclick="parent.closeDialog()">关闭对话框</button>
function closeDialog() {
parent.$("#dialog").dialog("close");
}
在Iframe页面中,通过调用parent.closeDialog()
方法来关闭父页面中的对话框。
这样,当点击Iframe页面中的"关闭对话框"按钮时,将会关闭父页面中的jQuery UI对话框。
领取专属 10元无门槛券
手把手带您无忧上云