2024-10-10
This commit is contained in:
30
web/bsadmin/kindeditor.php
Normal file
30
web/bsadmin/kindeditor.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<meta charset="utf-8" />
|
||||
<link rel="stylesheet" href="../kindeditor/themes/default/default.css" />
|
||||
<link rel="stylesheet" href="../kindeditor/plugins/code/prettify.css" />
|
||||
<script charset="utf-8" src="../kindeditor/kindeditor.js"></script>
|
||||
<script charset="utf-8" src="../kindeditor/lang/zh_CN.js"></script>
|
||||
<script charset="utf-8" src="../kindeditor/plugins/code/prettify.js"></script>
|
||||
<script>
|
||||
KindEditor.ready(function(K) {
|
||||
var editor1 = K.create('textarea[class="kindeditor"]', {
|
||||
width : '100%',
|
||||
cssPath : '../kindeditor/plugins/code/prettify.css',
|
||||
uploadJson : '../kindeditor/php/upload_json.php',
|
||||
fileManagerJson : '../kindeditor/php/file_manager_json.php',
|
||||
allowFileManager : false,
|
||||
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();
|
||||
});
|
||||
}
|
||||
});
|
||||
prettyPrint();
|
||||
});
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user