无法将setSelectionRange添加到所选元素

时间:2019-02-21 12:17:04

标签: javascript reactjs

我已使用“ getElementById”选择了输入。在我想要将“ setSelectionRange”方法添加到该元素之后。但是出现错误“类型'htmlelement'上不存在属性'setselectionrange'”。可能是什么问题?

const textfield = document.getElementById("masktextfield")
console.log(textfield)

这就是控制台中显示的内容

enter image description here

现在添加“ setselectionrange”

textfield.setSelectionRange(0,0) // property 'setselectionrange' does not exist on type 'htmlelement'

1 个答案:

答案 0 :(得分:0)

.mainsubmit
const textfield = document.getElementById("masktextfield");
textfield.focus();
textfield.setSelectionRange(2, 5);