tinyMCE编辑器按键动作捕捉.
tinyMCE.init({
// General options
mode : “textareas”,
language : “zh”,
custom_shortcuts : false,
theme : “advanced”,
plugins : “inlinepopups”,
// Theme options
theme_advanced_buttons1 : “bold,italic,underline,forecolor,fontsizeselect”,
theme_advanced_buttons2 : “”,
theme_advanced_buttons3 : “”,
theme_advanced_buttons4 : “”,
theme_advanced_toolbar_location : “top”,
theme_advanced_toolbar_align : “left”,
theme_advanced_resizing : false,
setup : function (ed) {
ed.onKeyPress.add(
function (ed, evt) {
if((evt.ctrlKey && evt.keyCode == 13)) {
sendform();
}
}
);
},
});
阅读(779) | 评论(0) | 转发(0) |