Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在构建一个 Firefox 扩展。我有一个弹出集,当按下工具栏按钮时显示,并且还有工作代码来手动关闭弹出集。
我遇到的问题是,每当我单击其他地方时,弹出集就会消失。我想禁用这种自动关闭行为。我确定我已经看到了一个弹出集或面板属性来控制它,但再也找不到参考了。有人知道该怎么做吗?
排序。我是个笨蛋。原来有一个 noautohide 属性可以放在面板上:
<popupset> <panel noautohide="true"> <!-- insert further content here --> </panel> </popupset>
我正在寻找popupset属性无济于事。