我希望在剪切/粘贴事件触发后调用函数。
例如,当用户通过键盘或鼠标(带上下文菜单)在编辑器中剪切/粘贴时,我想计算用户输入的字符数。
用户切割/粘贴后有没有办法调用我们自己的功能?
答案 0 :(得分:3)
是的,这是可能的。
使用paste plugin。
tinyMCE.init({
// General options
//mode:'exact',
mode: "textareas", // none, textareas, exact, ...
theme: "advanced", // also simple available
plugins : "paste",
paste_postprocess : function(pl, o) {
// o.content holds the pasted content o.content.length will give you the number of characters the user entered
alert(o.content.length);
},