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.
我想在弹出窗口中开发图像,因此我使用了JQuery slimbox library。这工作正常。
现在,我想在弹出窗口中显示页面而不是图像。例如,我将显示谷歌的缩略图,当用户点击它时,然后在弹出窗口中显示谷歌页面而不是大图。
我该如何存档?
尝试使用fancybox,它可以像这样加载原始html
$(document).ready(function(){ $("a").fancybox({ padding : 1, scrolling : 'no', autoDimensions : true }); });
但是我用它从我的域加载页面,而不是第 3 方页面。当然重定向到谷歌应该在那个 HTML 中处理。