我在我的FF addonSDK中使用它来打开一个新的外部窗口弹出窗口。
win = require('sdk/window/utils').openDialog({
features: Object.keys({
centerscreen: true,
resizable: true,
scrollbars: true
}).join() + ',width='+w+',height='+h+',top='+pos.top+',left='+pos.left,
name: "mysite"
});
工作正常,但它作为一个简单的弹出窗口作出反应。 我希望它可以是一个模态面板窗口(类似于铬面板)。
可以这样做吗?
答案 0 :(得分:0)