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.
如何使用 AJAX 将 Shadowbox 绑定/初始化到 jQuery 加载的内容? 现在,当我第一次进入该站点时,shadowbox 可以工作。
但是,当我将内容与通过 AJAX 加载的新内容交换时,这些新的一批内容不会弹出影子框,而是重定向到内容。
我有 Shadowbox.init(shadowbox_conf); 成功了,但似乎没有奏效。
谢谢, 三通
啊,我刚刚找到了解决方案。
Shadowbox.init 不能被调用 2 次。
所以改用这个。 Shadowbox.setup();
实际上,我个人必须这样做:
Shadowbox.clearCache(); Shadowbox.setup();
让 shadowbox 确认 DOM 更改。