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.
我创建了一个具有 GUI 的 web 应用程序,我需要在启动时启动所述 GUI,并以编程方式从处理程序访问文本区域和两个文本框的内容,这不是一个强烈的需求,我可以稍等片刻同时得到答案。
您可以在启动时添加 Gui(假设您使用 GUI builder),
function doGet() { var app = UiApp.createApplication(); app.add(app.loadComponent("MyGui")); return app; }
您可以在 GUI 构建器中设置小部件的 ID 和名称,然后在代码中使用它们,
app.getElementById('id') or e.parameter.[name]
您还可以参考以下 URL 获取 gui