0

有人知道如何在全屏模式下制作 jwysiwyg 编辑器吗?

4

2 回答 2

1

There is a plugin for that: https://github.com/akzhan/jwysiwyg/blob/master/plugins/wysiwyg.fullscreen.js

You can see a running example here: http://akzhan.github.com/jwysiwyg/help/examples/11-plugins.html

You should put a little snippet of code in order to have it working:

fullscreen : {
                visible: true,
                exec: function () {
                    if ($.wysiwyg.fullscreen) {
                        $.wysiwyg.fullscreen.init(this);
                    }
                }
            }

Regards.

于 2012-05-17T12:54:46.150 回答
1

这是一个例子:

全屏所见即所得编辑器 或这个:编辑器#2

于 2011-03-16T20:23:02.443 回答