小伙子,我的问题和你一样, 我是使用radio-group组件,绑定数据到editor渲染数据,editor会自动焦点,且弹出键盘。 现在的问题就是会自动焦点和弹出键盘, 怎么取消掉。 wx.createSelectorQuery().select('#editorB').context(function (res) { if(!res) return that.editorCtx = res.context res.context.setContents({ html: vhtml, focus: false }) }).exec()
小程序操作元素会跳转到元素位置,怎么整?wx.createSelectorQuery().select('#editor').context(ress => { this.editorCtx = ress.context this.editorCtx.setContents({ html: '测试', }) }).exec() //会自动跳转到editor元素的位置
2022-04-11