小程序
小游戏
企业微信
微信支付
扫描小程序码分享
请问有人知道<editor></editor>如何给这标签附上初始数据吗?
还有就是如何让他自动聚焦focus
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
bindready="onEditorReady" EditorContext.setContents({ html:"出入的内容"})
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
onEditorReady
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
bindready="onEditorReady" EditorContext.setContents({ html:"出入的内容"})
onEditorReady(){
wx.createSelectorQuery().select('#editor').context(function (res) {
that.ediotrCtx.insertText({ text: "需要出入的内容" })
}).exec()
},
onEditorReady
onEditorReady() {
// 输入~编辑框
wx.createSelectorQuery().select('#editor').context(function(res) {
that.editorCtx = res.context;
console.log("初始化成功:" + wx.getStorageSync("content"))
if (wx.getStorageSync("content")) { // 设置~历史值
that.editorCtx.insertText(wx.getStorageSync("content")) // 注意:插入的是对象
}
}).exec()
},