http://www.shadow/js.com/index.html“rel=“nofollow”http://www.shadow Box-js.com/index.html。
我在同一个网页上的2个单独的网络用户控制上有2个链接,应当开放2个不同的网页。
• 利用以下功能启动我的影子:
function InitializeShadowbox() {
Shadowbox.init({
onOpen: shadowboxOpen,
onFinish: shadowboxFinish,
onClose: shadowboxClose,
modal: true
});
// this will cause the shadowbox to setup itself again after a partial porstback.
Shadowbox.setup();
}
但问题是,影子(init)()功能是一种静态功能,因此显然不可能与不同的初始器建立不止一个影子联系?
我只希望创造新的影子、名称及其工作。
我需要首先把它作为独一无二的开端,但如下文所示:
function InitializeShadowbox() {
Shadowbox[customLink].init({
onOpen: shadowboxOpen,
onFinish: shadowboxFinish,
onClose: shadowboxClose,
modal: true
});
// this will cause the shadowbox to setup itself again after a partial porstback.
Shadowbox[customLink].setup();
}
Update: custom initialization added.
增 编