CKEditor 事件“加载并显示所有内容”?
我正在尝试这样做:
editor.window.$.scrollTo(0, val);
但除非我将其包装在 setTimeout 中,否则它似乎不起作用。
知道是否有办法确定事情何时真正准备就绪?我尝试过instanceReady和loaded事件,以及jQuery的ready(),但都无济于事。
I'm trying to do this:
editor.window.$.scrollTo(0, val);
But it doesn't seem to work unless I wrap it in a setTimeout.
Any idea if there's a way to determine when things are really ready to go? I've tried the instanceReady and loaded events, as well as jQuery's ready(), but all to no avail.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,很快,我终于找到了合适的东西来谷歌。
setData() 方法接受回调,我可以使用它来执行我需要的操作。
Ok, that was quick, I finally found the right thing to google for.
The setData() method accepts a callback, and I was able to use that to do what I needed.