我在 doGet 中加载一个组件,在单击事件之后,我试图隐藏该组件并显示另一个。 这些是在 GUI Builder 中制作的。 首先,是否有可能有 2 个不同的组件?如果是这样,我怎样才能让第二个组件显示在另一个组件之上?这是我的代码:
function doGet() {
var app = UiApp.createApplication();
app.add(app.loadComponent("first", {"z-index": "1"}));
return app;
}
function myClickHandler(e) {
var app = UiApp.getActiveApplication();
var label = app.getElementById('statusLabel');
label.setVisible(true);
app.close();
return app;
}
function afterClick(){
var app = UiApp.getActiveApplication();
app.add(app.loadComponent("second", {"z-index": "100"}));
return app;
}