💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# HTML DOM Text 对象 ## Text 对象 Text 对象代表 HTML 表单中的文本输入域。 在 HTML 表单中 <input type="text"> 每出现一次,Text 对象就会被创建。 该元素可创建一个单行的文本输入字段。当用户编辑显示的文本并随后把输入焦点转移到其他元素的时候,会触发 onchange 事件句柄。 您可以使用 HTML <textarea> 标记来创建多行文本输入。参阅 [Textarea 对象](/jsref/dom_obj_textarea.asp)。 对于掩码文本输入,把 <input type="text"> 中的 type 设置为 "password"。参阅 [Input Password](/jsref/dom_obj_password.asp)。 您可以通过表单的 elements[] 数组来访问文本输入域,或者通过使用 document.getElementById()。 ## Text 对象属性 | 属性 | 描述 | | --- | --- | | [accessKey](/jsref/prop_text_accesskey.asp) | 设置或返回访问文本域的快捷键。 | | [alt](/jsref/prop_text_alt.asp) | 设置或返回当浏览器不支持文本域时供显示的替代文本。 | | [defaultValue](/jsref/prop_text_defaultvalue.asp) | 设置或返回文本域的默认值。 | | [disabled](/jsref/prop_text_disabled.asp) | 设置或返回文本域是否应被禁用。 | | [form](/jsref/prop_text_form.asp) | 返回一个对包含文本域的表单对象的引用。 | | [id](/jsref/prop_text_id.asp) | 设置或返回文本域的 id。 | | [maxLength](/jsref/prop_text_maxlength.asp) | 设置或返回文本域中的最大字符数。 | | [name](/jsref/prop_text_name.asp) | 设置或返回文本域的名称。 | | [readOnly](/jsref/prop_text_readonly.asp) | 设置或返回文本域是否应是只读的。 | | [size](/jsref/prop_text_size.asp) | 设置或返回文本域的尺寸。 | | [tabIndex](/jsref/prop_text_tabindex.asp) | 设置或返回文本域的 tab 键控制次序。 | | [type](/jsref/prop_text_type.asp) | 返回文本域的表单元素类型。 | | [value](/jsref/prop_text_value.asp) | 设置或返回文本域的 value 属性的值。 | ## 标准属性 | 属性 | 描述 | | --- | --- | | [className](/jsref/prop_classname.asp) | 设置或返回元素的 class 属性。 | | [dir](/jsref/prop_dir.asp) | 设置或返回文本的方向。 | | [lang](/jsref/prop_lang.asp) | 设置或返回元素的语言代码。 | | [title](/jsref/prop_title.asp) | 设置或返回元素的 title 属性。 | ## Text 对象方法 | 方法 | 描述 | | --- | --- | | [blur()](/jsref/met_text_blur.asp) | 从文本域上移开焦点。 | | [focus()](/jsref/met_text_focus.asp) | 在文本域上设置焦点。 | | [select()](/jsref/met_text_select.asp) | 选取文本域中的内容。 |