我对 http://aloha-editor.org/guides/events.html#aloha-editable-created-event页面中的 Aloha.trigger 有疑问 如何实际使用
Aloha.trigger( 'aloha-smart-content-changed', {
'editable' : , // object of the editable
'keyIdentifier' : , // char | null
'keyCode' : , // char | null
'char' : , // char | null
'triggerType' : , // keypress, idle, blur, paste, block-change
'snapshotContent' : , // snapshot content of the editable as HTML String
} );
或者
Aloha.trigger( 'aloha-editable-created', [
// jQuery object reference of an editable
] );
几乎?我找不到任何例子。只能找到 Aloha.bind
Aloha.bind( 'aloha-editable-created', function( jEvent, editable ) {
console.log( 'editable "' + editable.getId() + '" created' );
});
谢谢