我已经使用“getElementById”选择了输入。之后,我想将“setSelectionRange”方法添加到该元素。但出现错误“属性”setselectionrange“在类型”htmlelement“上不存在”。可能是什么问题?
const textfield = document.getElementById("masktextfield")
console.log(textfield)
这就是控制台中显示内容
现在添加“设置选择范围”
textfield.setSelectionRange(0,0) // property 'setselectionrange' does not exist on type 'htmlelement'
1条答案
按热度按时间huwehgph1#
第一个