日期:2014-05-17 浏览次数:20720 次
<script>
var editor;
KindEditor.ready(function(K) {
var options = {
width : '1000px',
height : '900px',
uploadJson : 'editor/jsp/upload_json.jsp',
fileManagerJson : 'editor/jsp/file_manager_json.jsp',
allowFileManager : true,
afterBlur: function(){
this.sync();
}
}
var editor = K.create('#editor_id', options);
prettyPrint();
});
</script>
<textarea id="editor_id" name="content" style="width:700px;height:300px;">
</textarea>