如何使用 ck 编辑器实例来归档数组名称?
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您也可以通过它的 id 来调用它,请参阅 http://docs.cksource .com/ckeditor_api/symbols/CKEDITOR.html#.replace
You can call it by it's id as well, see http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.html#.replace