//新一行的图片显示
editor.insertValue("n");
}
});
});
//拖拽上传图片
Edtools.drag("#post_content", function (base64, image, event) {
$.post("{:url('api/uploader/upEditorImg')}",{base:base64}, function (ret) {
layer.msg(ret.msg);
if (ret.code === 1) {
//新一行的图片显示
editor.insertValue("n");
}
});
});









