CKEDITOR,在文本编辑器 onLoad 上自动聚焦

发布于 2024-08-15 10:43:26 字数 584 浏览 5 评论 0原文

有人知道如何在页面加载时自动聚焦于 CKEDITOR 文本区域吗?

目前,用户必须先单击文本区域才能开始输入。像 Google 一样,我希望加载页面,并且用户可以立即开始输入,而无需单击文本区域。

这是启动 CKEDITOR 的当前代码

<script type="text/javascript">
CKEDITOR.replace( 'meeting_notes',
    {
        toolbar :
        [
            [ 'Bold', 'Italic', 'Underline', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink' ],
            ['Cut','Copy','Paste','PasteText'],
            ['Undo','Redo','-','RemoveFormat'],
            ['TextColor','BGColor'],
            ['Maximize']
        ]
    });
</script>

谢谢

Anyone know how to autofocus on the CKEDITOR text area on page load?

Currently the user has to click in the text area before they can start typing. Like Google, I'd like the page to load and the user can immediately start typing w/o having to click the text area.

Here is the current code that initiated CKEDITOR

<script type="text/javascript">
CKEDITOR.replace( 'meeting_notes',
    {
        toolbar :
        [
            [ 'Bold', 'Italic', 'Underline', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink' ],
            ['Cut','Copy','Paste','PasteText'],
            ['Undo','Redo','-','RemoveFormat'],
            ['TextColor','BGColor'],
            ['Maximize']
        ]
    });
</script>

Thanks

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

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

发布评论

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

评论(5

等你爱我 2024-08-22 10:43:26

也许是 startupFocus 配置选项?

CKEDITOR.replace( 'meeting_notes',
    {
        startupFocus : true,
        toolbar :
...

Perhaps the startupFocus config option?

CKEDITOR.replace( 'meeting_notes',
    {
        startupFocus : true,
        toolbar :
...
小嗷兮 2024-08-22 10:43:26

我自己没有尝试过,但请查看 CKEDITOR.config .startupFocus

定义:设置页面加载时编辑器是否应该具有焦点。

I've not tried it myself, but check out the CKEDITOR.config.startupFocus.

Definition: Sets whether the editor should have the focus when the page loads.

末蓝 2024-08-22 10:43:26

在您的配置中只需执行以下操作:

    config.startupFocus = true;

In your config simply do this:

    config.startupFocus = true;
〆一缕阳光ご 2024-08-22 10:43:26

通过将回调传递给将焦点设置到编辑器的 onReady 属性,将焦点设置到加载时的编辑器

<CKEditor ... onReady={(editor) => { editor.focus(); }} />

set focus to the editor on load by passing a callback to the onReady prop that sets focus to the editor

<CKEditor ... onReady={(editor) => { editor.focus(); }} />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文