Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 colorbox 来显示我的 webapp 的帮助。这很好,但我现在想要的是在帮助下打开弹出窗口,并且用户可以按照教程视频同时在应用程序中进行操作。
因此可以在不关闭颜色框窗口的情况下单击父窗口。我不想从颜色框到父窗口进行操作,而是直接在父窗口中单击,同时在颜色框窗口中观看我的 vid。
我不确定 colorbox 是用于此行为的工具,但想在切换到另一个之前询问。
谢谢巴斯蒂安
您可以将overlayCloseand设置escKey为 false。 然后你必须通过 css 删除覆盖 div。像下面这样。
overlayClose
escKey
#cbobOverlay { display: none; }
因此,要完成,您可能需要添加一些按钮或链接以在需要时触发关闭。
<a href="javascript:void(0)" class="close">Close</a> jQuery('.close').click(function() { jQuery.colorbox.close(); });
希望这有帮助。
参考: