我从谷歌文档开始使用 hello world 应用程序来编写 chrome 扩展。http://code.google.com/chrome/extensions/getstarted.html
我只是将 popup.js 修改为:
var span = document.createElement("span");
span.innerHTML = "<b>blah</b>";
alert(document.head);
alert(document.body);
document.body.appendChild(span);
我希望这会在我的弹出窗口中显示“blah”,但我将 document.body 设为 null。我是 js 和 chrome 的新手,我试图弄清楚这里发生了什么。我究竟做错了什么?