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.
在我的网站上,我有一个用户列表。通过单击每一个,将显示一个花式框弹出窗口。在窗口中,我使用 iframe 加载一个包含用户绘画的页面。
有什么方法可以通过单击 pinterest 书签固定按钮使 fancybox iframe 中的图像可固定?还是我必须在每个 HTML 页面上添加一个 pin it 按钮?
谢谢,
米洛
小书签按钮适用于当前加载的页面。通常,如果 iframe 与其原始 url 发生了细微的变化,则无法通过 javascript 访问父页面。实际的 iframe 本身必须启动适当的消息传递请求系统。
如果您可以让 iframe 向包含所需图像的父窗口发送消息,然后让父窗口将图像链接添加到页面,那么这似乎是目前唯一的方法。查看 postMessage() 函数。
当您问是否有“任何方式”可以做到这一点时,我会说是的。但是,它非常难看。将 pinit 按钮添加到 iframe 中的每个图像可能会更好。:)