在我的browser.xul文件中,我有一个面板元素:
<panel id="panel1">
<!-- Elements -->
</panel>
当我尝试:
window.document.getElementById("panel1").openPopup(button, "after_start", 0, 0, false, false);
浏览器说:
window.document.getElementById("panel1") is null.
我在这里遗漏了什么吗?
答案 0 :(得分:0)
这是我第一次在html中看到面板标签..
你确定你不是这个意思吗?<div id="panel1">
....
</div>