我已使用“ getElementById”选择了输入。在我想要将“ setSelectionRange”方法添加到该元素之后。但是出现错误“类型'htmlelement'上不存在属性'setselectionrange'”。可能是什么问题?
const textfield = document.getElementById("masktextfield")
console.log(textfield)
这就是控制台中显示的内容
现在添加“ setselectionrange”
textfield.setSelectionRange(0,0) // property 'setselectionrange' does not exist on type 'htmlelement'
答案 0 :(得分:0)
.mainsubmit
const textfield = document.getElementById("masktextfield");
textfield.focus();
textfield.setSelectionRange(2, 5);