我使用
在chrome选项卡的当前页面中插入myscript.js chrome.tabs.executeScript(null,
{ file:"myscript.js"}, function() {
chrome.tabs.executeScript(null, { code: "myfunction();"});
window.close();
});
顶部框架有一个子iframe,frame.length的值为1。
但是当我尝试使用frames [0]或window.frames [0]来获取iframe的窗口时,它们是未定义的。
我的错误或只是镀铬扩展问题吗?
答案 0 :(得分:0)
这是一个知道错误.....
http://code.google.com/p/chromium/issues/detail?id=20773
......评论中有一些可以帮助你的解决方法。