如何使用 ck 编辑器实例来归档数组名称?

发布于 2024-11-14 13:29:16 字数 745 浏览 1 评论 0原文

              <textarea name="page[content]" id="content" class="medium-width" style="height:100px;"></textarea>
              <script type="text/javascript">
                        CKEDITOR.replace( 'page[content]' );
                        $('#btn').click(function(){
                            CKEDITOR.instances.page[content].updateElement();
                            }); 
                  </script>

我正在为我的文本区域字段使用数组名称。它对于调用 CKEDITOR.replace( 'page[content]' ); 运行良好。

现在我的问题是 CKEDITOR.instances.page[content]。 updateElement()...这里我如何使用数组字段名称?...

如果我使用普通名称,它工作得很好。

我如何在此处使用数组名称 CKEDITOR.instances.page[content].updateElement()

              <textarea name="page[content]" id="content" class="medium-width" style="height:100px;"></textarea>
              <script type="text/javascript">
                        CKEDITOR.replace( 'page[content]' );
                        $('#btn').click(function(){
                            CKEDITOR.instances.page[content].updateElement();
                            }); 
                  </script>

I'm using array name for my textarea field.It is working well for call CKEDITOR.replace( 'page[content]' );

Now my problem is here CKEDITOR.instances.page[content].updateElement()...Here how can i use array field name?...

If i use normal name,it working well.

How can i use array name CKEDITOR.instances.page[content].updateElement() here?

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

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

发布评论

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

评论(1

み零 2024-11-21 13:29:16

您也可以通过它的 id 来调用它,请参阅 http://docs.cksource .com/ckeditor_api/symbols/CKEDITOR.html#.replace

<script type="text/javascript">
    CKEDITOR.replace( 'content' );
    $('#btn').click(function(){
        CKEDITOR.instances.content.updateElement();
    }); 
</script>

You can call it by it's id as well, see http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.html#.replace

<script type="text/javascript">
    CKEDITOR.replace( 'content' );
    $('#btn').click(function(){
        CKEDITOR.instances.content.updateElement();
    }); 
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文