editor.addShortcut(
'meta+v', '純文字貼上', function (e) {
editor.insertContent('<b>請勿使用Ctrl+V貼上</b>');//寫提醒文字
editor.execCommand('mcePasteText',false); //不處理貼上的文字
});
editor.addShortcut(
'meta+v', '純文字貼上', function (e) {
editor.insertContent('<b>請勿使用Ctrl+V貼上</b>');//寫提醒文字
editor.execCommand('mcePasteText',false); //不處理貼上的文字
});
plugins: [
"advlist autolink lists link image charmap print preview anchor",
"searchreplace visualblocks code fullscreen",
"insertdatetime media table contextmenu paste"
],
paste_preprocess: function (plugin, args) {
console.log("Attempted to paste: ", args.content);
// replace copied text with empty string
args.content = '禁止貼上';
}
參考: