| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8" />
- <title>NKeditor 在线编辑器 PHP demo</title>
- <script charset="utf-8" src="NKeditor-all.js"></script>
- <!-- 下面是外部插件不是必须引入的 -->
- <script charset="utf-8" src="libs/jquery.min.js"></script>
- <script charset="utf-8" src="libs/JDialog/JDialog.min.js"></script>
- <script>
- KindEditor.ready(function(K) {
- K.create('textarea[name="content1"]', {
- uploadJson : K.basePath+'php/qiniu/upload_json.php',
- fileManagerJson : K.basePath+'php/qiniu/file_manager_json.php',
- dialogOffset : 0, //对话框距离页面顶部的位置,默认为0居中,
- allowFileManager : true,
- allowImageUpload : true,
- allowMediaUpload : true,
- afterCreate : function() {
- var self = this;
- K.ctrl(document, 13, function() {
- self.sync();
- K('form[name=example]')[0].submit();
- });
- K.ctrl(self.edit.doc, 13, function() {
- self.sync();
- K('form[name=example]')[0].submit();
- });
- },
- themeType : "default", //主题
- //错误处理 handler
- errorMsgHandler : function(message, type) {
- try {
- JDialog.msg({type:type, content:message, timer:2000});
- } catch (Error) {
- alert(message);
- }
- }
- });
- });
- </script>
- </head>
- <body>
- <form name="example" method="post" style="margin-top: 20px;">
- <textarea name="content1" style="width:900px;height:500px;visibility:hidden;"></textarea>
- </form>
- </body>
- </html>
|