gpt4 book ai didi

jquery-mobile - 如何关闭弹出对话框页面并从代码中打开另一个?

转载 作者:行者123 更新时间:2023-12-04 07:39:36 25 4
gpt4 key购买 nike

我正在关闭一个弹出对话框,然后按照我打开另一个弹出窗口的步骤进行操作,例如:

$( "#iece" ).popup( "close" );
$( "#popupMatricula" ).popup( "open" );

我也尝试:

       $(function() {
$( "#iece" ).bind({
popupafterclose: function(event, ui) {
$( "#popupMatricula" ).popup( "open" );
}
});
});

但#popupMatricula 永远不会打开。

最佳答案

我已经看到,如果不直接使用链接打开,弹出窗口总是需要一些延迟......请参阅此工作示例

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
<title>popup</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset= ISO-8859-5">
</head>
<body>

<div data-role="page" id="myPage">
<div data-role="content">
<h1>Popup</h1>
<div data-role="popup" id="popupBasic">
<p>This is a completely basic popup, no options set.</p>
</div>
<div data-role="popup" id="popupMatricula">
<p>This is the Matricula popup.</p>
</div>
</div>

<script>
$(document).bind('pageinit', function() {
setTimeout(function(){
$("#popupBasic").popup();
$("#popupBasic").popup("open");
}, 100);
setTimeout(function(){
$("#popupBasic").popup("close");
}, 3000);
setTimeout(function(){
$("#popupMatricula").popup();
$("#popupMatricula").popup("open");
}, 3100);
});
</script>
</div>

</body>
</html>

编辑 : Firefox 需要短暂延迟,但 @Jasper 测试的 Chrome 和 Android 浏览器不需要 here

关于jquery-mobile - 如何关闭弹出对话框页面并从代码中打开另一个?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12787072/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com