我有一个文档,上面有一些JavaScript和n个带有随机ID的iFrame。
在任意iframe中,我调用:
parent.DoSomething();
这很好用,并且代码可以执行,但是我的DoSomething()代码中有一个我想取出的假设。
我需要知道“调用” parent.DoSomething()
赞:
<script>
function DoSomething(){
caller.frame.id // <-- wishful code here
}
</script>
<iframe id=123abc></iframe>
<iframe id=456def></iframe>
...
<iframe id=012jkl></iframe>
这可能吗?