标签: reactjs draftjs
对于普通文本输入,您具有.select()功能来选择输入内容。
但是对于Draft.js编辑器,不存在此类功能。
替代方法是在安装编辑器时使用document.execCommand("selectAll", false, null);。
document.execCommand("selectAll", false, null);
但是我想知道这是否是正确的方法?还有更多的“ Draft.js方式” 吗?