您好,有没有办法检测用户关闭的SqueezeBox

最佳答案

Squeezebox有一个活动。

this.fireEvent('onClose', [this.content]);

因此,在制作挤压盒时,只需添加:

SqueezeBox.initialize({
    onClose: function() {
        alert('dont close me');
    },
    other: 'options'
});


顺便说一句-这真的很旧。您应该会得到一个更新的灯箱。

09-19 01:30