我正在使用summernote 0.8.9
。
我需要知道在插入summernote
内容后如何以100%的比例更改图像。我该如何解决这个问题?
这是我正在使用的代码。
<script>$(document).ready(function() {
$("#summernote").summernote({
placeholder: 'Enter directions here...',
height: 300,
callbacks: {
onImageUpload : function(files, editor, welEditable) {
for(var i = files.length - 1; i >= 0; i--) {
sendFile(files[i], this);
}
}
}
});
});
function sendFile(file, el) {
var form_data = new FormData();
form_data.append('file', file);
$.ajax({
data: form_data,
type: "POST",
url: 'editor-upload.php',
cache: false,
contentType: false,
processData: false,
success: function(url) {
$(el).summernote('editor.insertImage', url);
}
});
}
</script>