We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在目前 SPA 一统前端半壁江山的背景下,iframe 这种黑魔法已经很少见了,不过在一些多页面的老项目中仍然有它的一席之地。使用 iframe 比较常见的场景是需要在父窗口中使用 iframe 中的元素,或者在 iframe 中使用父窗口中的元素。
方法1:
window.frames['iframe的name值']; // 后接 iframe 中的元素选择器 // 示例: window.frames['iframe1'].document.getElementById('btn');
方法2:
document.getElementById('iframe的id').contentWindow; // 后接 iframe 中的元素选择器 // 示例: document.getElementById('iframe1').contentWindow.document.getElementById('btn');
方法3:
$('#iframe的id').contents().find('iframe中的元素选择器'); // 示例: $('#iframe1').contents().find('#btn');
window.parent.document; // 后接父级中的元素选择器 // 示例: window.parent.document.getElementById('btn');
$('iframe中的元素选择器', document.frames('frame的name').document); // 示例: $('#btnOk', document.frames('iframe').document);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
在目前 SPA 一统前端半壁江山的背景下,iframe 这种黑魔法已经很少见了,不过在一些多页面的老项目中仍然有它的一席之地。使用 iframe 比较常见的场景是需要在父窗口中使用 iframe 中的元素,或者在 iframe 中使用父窗口中的元素。
在父窗口中获取 iframe 中的元素
方法1:
方法2:
方法3:
在 iframe 中获取父窗口的元素
方法1:
方法2:
The text was updated successfully, but these errors were encountered: