<script>
$(document).ready(function() {
$(\'#summernote\').summernote({
height: 350,
lang: \'zh-CN\',
focus: true, // set focus to editable area after initializing su
placeholder: \'在这里添加内容\',
//清楚粘贴过来的格式
callbacks: {
onPaste: function (ne) {
var bufferText = ((ne.originalEvent || ne).clipboardData || window.clipboardData).getData(\'Text/plain\');
// ne.preventDefault();
ne.preventDefault ? ne.preventDefault() : (ne.returnValue = false);
// Firefox fix
setTimeout(function () {
document.execCommand("insertText", false, bufferText);
}, 10);
/* */
}
}
});
});
</script>

多种方法来自摘取文档

版权声明:本文为miny-simp原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/miny-simp/p/6757216.html