CKEditor预览方法
我希望在页面上的其他位置有一个按钮,其运行方法与单击 CKEditor 工具栏中的“预览”按钮相同。我正在使用jquery,所以它会是这样的:
$('#previewButton').click( function () {
$('#editor1').ckEditorGet().Preview();
});
有什么想法可以实现这个吗?我仔细研究了 API 文档,但找不到任何相关内容。
干杯
I would like to have a button elsewhere on my page that runs the same method that clicking the "Preview" button does in the CKEditor toolbar. I'm using jquery so it would be something like this:
$('#previewButton').click( function () {
$('#editor1').ckEditorGet().Preview();
});
Any ideas how I could accomplish this? I pored over the API documentation but can't find a word on it.
Cheers
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
或者,您可以使用
$('#editor1').val()
获取编辑器内容,并按照您喜欢的方式显示它。此示例使用弹出窗口:Alternatively you can get the editor contents with
$('#editor1').val()
, and display it the way you prefer. This example uses a popup window:使用 Firebug 或其他开发工具导航到 CKEditor 中的“预览”按钮。在那里您将找到有关单击事件的功能,例如:
您可以使用它来打开预览窗口。你可以做某事。喜欢:
Using Firebug or other development tool navigate to the "Preview" button in the CKEditor. There you'll find function on the click event like:
You can use it to open a preview window. You can do smth. like:
乍一看,您可以执行以下操作:
使用
title=preview
选择anchor
并调用单击。At first glance you could do something like this
Select the
anchor
withtitle=preview
and invoke click.