5

我试图在多个场合使用 shadowbox:有时我碰巧同时需要多个对话框。

在这个简单的示例中,我尝试关闭一个现有窗口并重新打开另一个窗口,但没有打开第二个窗口。我做错了什么?

<!DOCTYPE HTML>
<html>
<head>
    <link rel="stylesheet" href="shadowbox.css" type="text/css">
    <style type="text/css" media="screen">
        #sb-body, #sb-loading { background:#eee; }
    </style>

    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.js"></script>
    <script src="shadowbox.js" type="text/javascript" charset="utf-8"></script>

    <script type="text/javascript">

        Shadowbox.init();

        window.onload = function(){

            Shadowbox.open({
                content: 'First window. <a id="open-second" href="http://www.google.com">open another window</a>.',
                player: "html"
            });

            $('#open-second').live('click', function(e){
                e.preventDefault();

                Shadowbox.close();
                Shadowbox.open({
                    content: 'Second window.',
                    player: "html"
                });
            });
        };
    </script>
</head>
<body>blabla.</body>
</html>

问候,
阿迪特

4

2 回答 2

1

抱歉,这个问题,但我想我会转向 colorbox,因为它看起来更稳定:

$('#second-btn').live('click', function(e){
  e.preventDefault();
  $.colorbox({
    onComplete: function(){
      $('#cboxLoadedContent').append('second opened');
      $('#cboxClose').attr('id', 'cboxClose_disabled');
    },
    html:'<p>Second <a id="first-btn" href="x">first</a></p>',
    width: 500, height: 200
  });
});

function showfirst(){
  $.colorbox({
    onLoad: function(){ $('#cboxClose_disabled').attr('id', 'cboxClose'); },
    onComplete: function(){ $('#cboxLoadedContent').append('first opened') },
    html:'<p>First <a id="second-btn" href="x">second</a></p>',
    width: 500, height: 200
  });
}

$('#first-btn').live('click', function(e){
  e.preventDefault();
  showfirst()
});

showfirst();

喂,我一个人说话?!XD

于 2011-11-10T21:51:53.553 回答
0

这是我将使用的;对此不满意:
- 我强迫一个广泛使用的插件做一个简单的任务(关闭一个窗口并打开另一个窗口)
- 它需要覆盖每个 shadowbox 功能(现在只实现了播放器“html”)。

这是一个完整的工作示例

var shadowbox_orig_open = Shadowbox.open;
Shadowbox.reOpenable = function(new_opts) {
    if(Shadowbox.isOpen()){
        // close other dialog
        Shadowbox.options.onClose(Shadowbox.getCurrent());

        if(new_opts.player == "html"){
            $('#sb-player').fadeOut('normal', function(){ $(this).html(new_opts.content).fadeIn(); });
        }else{
            // ???
        }

        // set other new hooks
        Shadowbox.options = new_opts.options;
    }else{
        shadowbox_orig_open(new_opts);
    }
};
于 2011-11-09T14:55:10.963 回答