如何在页面加载时在窗口/文档内部迭代所有包含子iframe(tag)的iframe(tag)。内容可以是跨原点或相同原点的。
答案 0 :(得分:1)
类似的方法应该起作用:
$('body > iframe').each(function() {
// do something for parent iframe
$(this).children('iframe').each(function() {
// do something for children iframes
});
});