当前位置:网站首页>Paste in ckeditor does not work (your browser does not support pasting through the toolbar or right-click menu, please press ctrl+v to paste)
Paste in ckeditor does not work (your browser does not support pasting through the toolbar or right-click menu, please press ctrl+v to paste)
2022-07-22 11:16:00 【So far, all the ends of the earth_】
var editor = CKEDITOR.replace('editor', {
height: 300,
customConfig: '../Ckeditor/config.js'
});
editor.on("beforeCommandExec", function (event) {
// Display the paste dialog box of the paste button and right-click paste
if (event.data.name == "paste") {
event.editor._.forcePasteDialog = true;
}
// Don't show Ctrl+Shift+V Paste dialog box for
if (event.data.name == "pastetext" && event.data.commandData.from == "keystrokeHandler") {
event.cancel();
}
});
边栏推荐
- Dokcer运行Nacos容器自动退出问题
- JS simulation form post submission
- 基于ROS的机器人模型建立及3D仿真【物理/机械意义】
- Chapter1 Beginning Bash
- 1million people are waiting in line! The public beta version of Dall · e is also charged
- Chapter1 Beginning Bash
- Meta最新图像生成工具火了,竟能把梦境画成现实!
- 模型微调(fine-tuning)
- GL_ TRIANGLE_ Fan and GL_ TRIANGLE_ STRIP
- 【Flutter -- 基础组件】单选开关(Switch)& 单选框(Radio) & 复选框(Checkbox)
猜你喜欢
Creation and call of stored procedure based on Oracle Database
云呐|动环监控系统巡检,动环监控系统功能大致介绍
敲黑板!Kubernetes 架构核心知识点就这么多
向量化引擎对HTAP的价值与技术思考
Value and technical thinking of vectorization engine for HTAP
2022 audio and video technology vane
sql语句,分组后,组内根据datetime字段排序,保留日期最新的一条组内记录,删除其他项。(用于组内重复数据的剔除)
TX2显存与内存之间数据传递原理
Women's health and health information network dream weaving template (with mobile terminal) [test can be built]
国民技术 N32G452 调试接口复用功能 JTDI JTDO JNTRST
随机推荐
Turn: all leaders must master the "law of opportunity"
C. Doremy‘s IQ(贪心)
After the clothing ERP goes online, these problems must be paid attention to
tsconfig.json文件的作用
TCP 通信并发服务器详解(附有案例代码)
TypeScript—语法简介
Matlab natural spline function (constraining the slope at both ends)
智能运维场景解析:如何通过异常检测发现业务系统状态异常
Can you really use search engine?
网络安全竞赛C模块批量拿值脚本
力扣------统计有序矩阵中的负数
Common tools (Liu Xin)
How to get the Apache official domain name mailbox? Exclusive interview with five new committers of Apache linkis
composer.json 常用配置解释
CKeditor 中的粘贴不起作用(您的浏览器不支持通过工具栏或右键菜单进行粘贴,请按 Ctrl+V 进行粘贴)
Chapter1 Beginning Bash
TCP 滑动窗口详解(非常实用)
机房动环监控系统的功能,动环监控系统的主要功能
【Flutter -- 基础组件】单选开关(Switch)& 单选框(Radio) & 复选框(Checkbox)
Dokcer运行Nacos容器自动退出问题