--- title: HTMLInputElement.setSelectionRange() slug: Web/API/HTMLInputElement/setSelectionRange tags: - API - HTML DOM - HTMLInputElement - 参考 - 文本选择 - 方法 translation_of: Web/API/HTMLInputElement/setSelectionRange ---
HTMLInputElement.setSelectionRange
方法用于设定{{HTMLElement("input")}} 或 {{HTMLElement("textarea")}} 元素中当前选中文本的起始和结束位置。
在较新的浏览器中,你可以通过一个可选的 selectionDirection 来指定文本选中的方向。比如通过点击和拖动从结束位置往起始位置选中一个字符串。
每次调用这个这个方法都会更新 HTMLInputElement
的 selectionStart
, selectionEnd
和 selectionDirection
属性。
要注意的是,在 WHATWG forms spec 中,selectionStart
, selectionEnd
属性和 setSelectionRange
方法只能应用于类型为文本、搜索、链接、电话号码和密码的输入。Chrome 从版本 33 开始会在访问其余类型的这些属性和方法时抛出异常。例如,输入类型为数字时会抛出:“不能从'HTMLInputElement'中读取'selectionStart'属性:输入元素的类型('number')不支持选择(Failed to read the 'selectionStart' property from 'HTMLInputElement': The input element's type ('number') does not support selection)”。
如果你希望全选输入元素中的文本,你可以使用 HTMLInputElement.select() 方法。
element.setSelectionRange(selectionStart, selectionEnd [, selectionDirection]);
如果 selectionEnd
小于 selectionStart
,则二者都会被看作 selectionEnd
。
selectionStart
value
长度还大,则会被看作 value
最后一个位置的索引。selectionEnd
selectionDirection
{{optional_inline}}"forward"
"backward"
"none"
默认值,表示方向未知或不相关。在这个示例中,按下按钮以选择文本框中第三、四、五个字符(即“Mozilla”中的“zil”)。
<input type="text" id="text-box" size="20" value="Mozilla"> <button onclick="selectText()">Select text</button>
function selectText() { const input = document.getElementById('text-box'); input.focus(); input.setSelectionRange(2, 5); }
{{EmbedLiveSample("Example")}}
规范 | 状态 | 注释 |
---|---|---|
{{SpecName("HTML WHATWG", "forms.html#dom-textarea/input-setselectionrange", "HTMLInputElement.setSelectionRange()")}} | {{Spec2("HTML WHATWG")}} | No change |
{{SpecName("HTML5.1", "forms.html#dom-textarea/input-setselectionrange", "HTMLInputElement.setSelectionRange()")}} | {{Spec2("HTML5.1")}} | No change |
{{SpecName("HTML5 W3C", "forms.html#dom-textarea/input-setselectionrange", "HTMLInputElement.setSelectionRange()")}} | {{Spec2("HTML5 W3C")}} | Initial definition |
{{Compat("api.HTMLInputElement.setSelectionRange")}}