var editor = null;
setTimeout(function () {
editor = KindEditor.create('#' + editorId, {
resizeType: 1,
uploadJson: 'kindeditor/upload_json.ashx',
fileManagerJson: 'kindeditor/file_manager_json.ashx',
allowPreviewEmoticons: false,
allowImageUpload: true,
items: [
'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold', 'italic', 'underline',
'removeformat', '|', 'justifyleft', 'justifycenter', 'justifyright', 'insertorderedlist',
'insertunorderedlist', '|', 'emoticons', 'image', 'link']
});
}, 1);
<html>
<head>
<meta charset="utf-8" />
<title>FileManager Examples</title>
<link rel="stylesheet" href="../themes/default/default.css" />
<script src="../kindeditor.js"></script>
<script>
KindEditor.ready(function(K) {
var editor = K.editor({
fileManagerJson : '../php/file_manager_json.php'
});
K('#filemanager').click(function() {
editor.loadPlugin('filemanager', function() {
editor.plugin.filemanagerDialog({
viewType : 'VIEW',
dirName : 'image',
clickFn : function(url, title) {
K('#url').val(url);
editor.hideDialog();
}
});
});
});
});
</script>
</head>
<body>
<input type="text" id="url" value="" /> <input type="button" id="filemanager" value="서버파일" />
</body>
</html>
'Story > Javascript' 카테고리의 다른 글
임의의 좌표에 이벤트를 강제로 주는 방법 트리거 이벤트 (0) | 2014.10.22 |
---|---|
kindeditor ie11 에서 붙여넣기시 원하는 위치에 놓이지 않고 맨끝에 붙을때. (0) | 2014.10.21 |
보색 구하기 complementary color , Opposite Color (0) | 2013.01.21 |
youtube javascript 로 동작 제어하기 (0) | 2013.01.11 |
페이지 번역 위젯 (0) | 2012.09.26 |