FCK编辑器定制
当我们点击fckeditor的锚标签时,我们会弹出一个询问锚名称的窗口。 我需要获得相同的功能来在我的应用程序中添加脚注。
是否可以通过这种方式自定义fckeditor。这里我需要添加一个工具栏项“say footnoe”。当我们点击它时,会出现一个弹出窗口。 fckeditor中的锚点代码写在哪里?
When we click on the anchor tag of fckeditor, we will obtain one pop up asking the anchor name.
I need to get same functionality for adding the footnote in my application.
Is it possible to customize the fckeditor in this way. Here I need to add one toolbar item 'say footnoe'. when we click on that appear a pop up.
where the anchor section code is written in fckeditor?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你说的是FCK编辑器还是Ckeditor?
您可以通过插件扩展 CKeditor。这是一个教程 http://www.voofie.com/content/2/ ckeditor-plugin-development/
锚点代码位于“\ckeditor\plugins\link\dialogs\anchor.js”(压缩)
源位于“ckeditor\_source\plugins\link”中。
希望这有帮助。
Are you talking about FCK editor or the Ckeditor?
You can extend CKeditor via plugins. Here is a tutorial http://www.voofie.com/content/2/ckeditor-plugin-development/
anchor code is in '\ckeditor\plugins\link\dialogs\anchor.js' (compressed)
source is in 'ckeditor\_source\plugins\link'.
Hope this helps.