欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

chrome, setSelectionRange issue

程序员文章站 2022-07-15 09:13:10
...

在chrome下,setSelectionRange这个dom方法有bug,不能创建input中的文本选中区域。

解决办法就是将setSelectionRange方法包装在window.setTimeout方法中,

var that = this;

setTimeout(function () {
    that.setSelectionRange(...);
}, 0)

详情请见,https://code.google.com/p/chromium/issues/detail?id=32865