0

谁能告诉我如何制作侧边栏。XUL 参考资料中没有关于侧边栏的内容。我参考了一些旧代码。但是,我找不到在哪里编辑。在这些代码中,我必须经常创建 jar 文件,这很烦人。谁能给我一个指导,只是一个在侧边栏中添加列表框的简单代码?

编辑: 代码有效。我在“emptysidebar.xul”中编辑了代码。但它没有用。

欢迎任何在侧边栏中添加元素的解决方案。

4

1 回答 1

1

我什至没有想到解决方案会这么简单。这就是解决方案。

var sidebarWindow = document.getElementById("sidebar").contentWindow;

if(sidebarWindow)
{
    sidebarWindow.location = "chrome://custombutton/content/login.xul"; 
                                 // your xul location
}
else
{
    alert("sidebar window is not null");
}
于 2012-04-20T12:44:49.093 回答