YUI 富文本编辑器:如何将光标设置到文本末尾

发布于 2024-11-02 03:25:45 字数 72 浏览 6 评论 0原文

我想用一些预加载的文本渲染 YUI2 富文本编辑器。但光标始终位于文本的第一个位置。如何将其设置在文本末尾?

谢谢

i want to render a YUI2 Rich Text Editor with some preloaded text. But the cursor is always in the first position of the text. How can i set it at the end of the text?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦里梦着梦中梦 2024-11-09 03:25:45

我正在使用 YUI3,但这可能仍然适用于 YUI2。我使用 execCommand('insertandfocus','content') 添加内容,而不是使用内容初始化编辑器。

例如,

YUI().use('editor', function(Y) {
  var yuiEditor = new Y.EditorBase({
    content: myPreloadedContent
  });
  ...
  yuiEditor.on('frame:ready', function() {
    this.focus();
  });
  ...
});

我不是这样插入内容:

YUI().use('editor', function(Y) {
  var yuiEditor = new Y.EditorBase();
  ...
  yuiEditor.on('frame:ready', function() {
    this.focus(function(){
      yuiEditor.execCommand('insertandfocus', myPreloadedContent);
    });
  });
  ...
});

I'm using YUI3, but this might still work for YUI2. I'm adding the content with execCommand('insertandfocus','content') rather than initializing the editor with the content.

For instance, instead of this:

YUI().use('editor', function(Y) {
  var yuiEditor = new Y.EditorBase({
    content: myPreloadedContent
  });
  ...
  yuiEditor.on('frame:ready', function() {
    this.focus();
  });
  ...
});

I'm inserting the content like this:

YUI().use('editor', function(Y) {
  var yuiEditor = new Y.EditorBase();
  ...
  yuiEditor.on('frame:ready', function() {
    this.focus(function(){
      yuiEditor.execCommand('insertandfocus', myPreloadedContent);
    });
  });
  ...
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文