reactjs 无法将setSelectionRange添加到选定元素

bxgwgixi  于 2022-11-22  发布在  React
关注(0)|答案(1)|浏览(88)

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

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

这就是控制台中显示内容

现在添加“设置选择范围”

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

相关问题