jquery aloha-editor, Aloha.triger

jquery aloha-editor, Aloha.triger

本文关键字:triger Aloha aloha-editor jquery      更新时间:2023-09-26

我有一个关于Aloha的问题。页面内触发器http://aloha-editor.org/guides/events.html#aloha-editable-created-event如何实际使用

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
] );

几乎?我找不到任何例子。只有阿罗哈。可以找到Bind

Aloha.bind( 'aloha-editable-created', function( jEvent, editable ) {
    console.log( 'editable "' + editable.getId() + '" created' );
});

谢谢

使用一些像这样的东西

Aloha.bind( 'aloha-smart-content-changed', function( jEvent, aEvent){
      // Get updated content
  console.log( this, jEvent, aEvent.getSnapshotContent() );
      // Get the object that is updated - jQ object 
  console.log($(aEvent.editable.obj).eq(0);
});