公告:所有在
2025 年 4 月 15 日之前注册使用 Earth Engine 的非商业项目都必须
验证是否符合非商业性质的资格条件,才能继续使用 Earth Engine。
ui.Textbox
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
一个文本框,可让用户输入文本信息。
用法 | 返回 |
---|
ui.Textbox(placeholder, value, onChange, disabled, style) | ui.Textbox |
参数 | 类型 | 详细信息 |
---|
placeholder | 字符串,可选 | 文本框为空时显示的占位文本。默认值为 none。 |
value | 字符串,可选 | 文本框的值。默认值为 none。 |
onChange | 函数(可选) | 文本更改时要触发的回调。回调会传递文本框中当前的文本和文本框 widget。 |
disabled | 布尔值,可选 | 文本框是否处于停用状态。默认值为 false。 |
style | 对象,可选 | 一个对象,包含允许的 CSS 样式及其要为此 widget 设置的值。请参阅 style() 文档。 |
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-07-26。
[null,null,["最后更新时间 (UTC):2025-07-26。"],[[["\u003cp\u003eThe \u003ccode\u003eui.Textbox\u003c/code\u003e widget creates an interactive textbox for user text input.\u003c/p\u003e\n"],["\u003cp\u003eIt can be customized using arguments like \u003ccode\u003eplaceholder\u003c/code\u003e, \u003ccode\u003evalue\u003c/code\u003e, \u003ccode\u003eonChange\u003c/code\u003e, \u003ccode\u003edisabled\u003c/code\u003e, and \u003ccode\u003estyle\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eonChange\u003c/code\u003e callback provides the current text and the textbox widget, enabling dynamic responses to user input.\u003c/p\u003e\n"],["\u003cp\u003eUsers can set an initial value and placeholder text, and optionally disable the textbox using the provided arguments.\u003c/p\u003e\n"]]],["The core functionality is a text input box (`ui.Textbox`). Users can set a `placeholder` text and the initial `value`. An `onChange` callback function is triggered whenever the text changes, receiving the new text and widget. Users can disable the textbox with the `disabled` parameter. Customizable `style` options are available using CSS styles, allowing for visual modification. All arguments are optional with default values, except for the callback function.\n"],null,["# ui.Textbox\n\n\u003cbr /\u003e\n\nA textbox that enables the user to input text information.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|-------------------------------------------------------------------------------------|------------|\n| `ui.Textbox(`*placeholder* `, `*value* `, `*onChange* `, `*disabled* `, `*style*`)` | ui.Textbox |\n\n| Argument | Type | Details |\n|---------------|--------------------|------------------------------------------------------------------------------------------------------------------------------|\n| `placeholder` | String, optional | The placeholder text to display when the textbox is empty. Defaults to none. |\n| `value` | String, optional | The textbox's value. Defaults to none. |\n| `onChange` | Function, optional | The callback to fire when the text changes. The callback is passed the text currently in the textbox and the textbox widget. |\n| `disabled` | Boolean, optional | Whether the textbox is disabled. Defaults to false. |\n| `style` | Object, optional | An object of allowed CSS styles with their values to be set for this widget. See style() documentation. |"]]