尝试在chrome扩展中将iframe的高度设置为div高度

时间:2015-11-02 16:49:08

标签: javascript google-chrome-extension

您好我正在尝试构建Chrome扩展程序。我在内容脚本中加载了css,我的大部分代码都在iframe中,如下所示:



var iframe = document.createElement('iframe');
iframe.setAttribute("id", "meineIFRAME");
iframe.style.position = "fixed";
document.documentElement.appendChild(iframe);

iframe.contentDocument.head.innerHTML = "<link rel='stylesheet' type='text/css' href='" + chrome.extension.getURL("divstyle.css") + "'>";

var div = document.createElement("div");
	div.setAttribute("id","testBox");
&#13;
&#13;
&#13;

在我的代码结束时,我需要将iframe的高度设置为其中的div,问题(我发现)是div的高度错误地给出,因为css还没有完成装载...

我现在花了2天时间,感觉这是一个很好的尝试。任何人都知道如何解决这个问题?

0 个答案:

没有答案