3

我正在关闭一个弹出对话框,然后我正在打开另一个弹出窗口,例如:

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

我也尝试:

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

但是#popupMatricula 永远不会打开。

4

3 回答 3

7

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

<!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 需要短暂的延迟,但对于 Chrome 和 Android 浏览器则不需要,因为@Jasper在此处测试

于 2012-11-05T21:15:32.980 回答
4

在较新版本的 JQM 中,它是固定的!

要打开一个弹出窗口,您需要先关闭任何打开的窗口,然后将另一个像这样的开口绑定到popupafterclose事件!

    $("#loading_popup").on("popupafterclose", function () {
            //any action you want like opening another popup
            onloadpopupOpen();

    })

快乐编码!

于 2014-05-08T08:47:06.277 回答
1

在关闭上一个时打开另一个弹出窗口。我使用 popupafterclose 事件。

$(".selector").on("popupafterclose", function ()
{
        //any action you want like opening another popup
         setTimeout(function()
         {
            $('#popup').popup('open');
         }, 100);
});

基于泰丰解决方案

于 2014-05-22T14:29:24.410 回答