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 中发布输入,作为父表单的一部分吗?
其次,我基于搜索在加载到表单中的 iframe 内渲染带有标记的谷歌地图。
我需要通过将 n drop 从 iframe 中拖放到父表单中来获取标记的值。我可以在不使用 jquery 拖放的情况下做到这一点,但我想要用户友好的界面(我已经在使用 jQuerys Draggable 和 Droppable)。提前致谢
我所做的是,我只是将需要填充的输入移动到我的主窗口(父窗口),并使用父窗口中的一个函数来处理 iframe 中生成的数据,使用:
window.parent.myfunction(data);
每当我需要将数据从 iframe 中的脚本传递到父窗口时,我都会执行上述操作。
干杯