我正在使用名为Tinymce的编辑器,我想在那里插入一个快捷方式,但我不知道该怎么做,因为我的代码在那里不起作用,这里有没有人曾经使用过tinymce?
我想在点击转义时显示一条消息......
代码在这里:
$( document ).ready(function() {
$('#txtareavalue').on('keydown', function (event) {
if (event.which === 27) {
alert('teste');
event.preventDefault();
return false;
}
});
});
答案 0 :(得分:0)
从TinyMCE文档中可以找到:
http://www.tinymce.com/wiki.php/API3:event.tinymce.Editor.onKeyPress
// Adds an observer to the onKeyPress event using tinyMCE.init
tinyMCE.init({
...
setup : function(ed) {
ed.onKeyPress.add(function(ed, e) {
console.debug('Key press event: ' + e.keyCode);
//Put your on('keydown') code in here
});
}
});
总是看一下文档:)这就是它的用途。