日期:2014-05-16 浏览次数:20876 次
<script>
KindEditor.ready(function(K) {
var editor = K.editor({
allowFileManager : true
});
K('#image').click(function() {
editor.loadPlugin('image', function() {
editor.plugin.imageDialog({
imageUrl : K('#url').val(),
clickFn : function(url, title, width, height, border, align) {
K('#url').val(url);
editor.hideDialog();
}
});
});
});
});
</script>
<input type="text" id="url" value="" /> <input type="button" id="image" value="选择图片" />