当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript Insert.append方法代码示例

本文整理汇总了TypeScript中@ephox/sugar.Insert.append方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Insert.append方法的具体用法?TypeScript Insert.append怎么用?TypeScript Insert.append使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在@ephox/sugar.Insert的用法示例。


在下文中一共展示了Insert.append方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: function

const appendStyle = function (editor: Editor, text: string) {
  const head = Element.fromDom(editor.getDoc().head);
  const tag = Element.fromTag('style');
  Attr.set(tag, 'type', 'text/css');
  Insert.append(tag, Element.fromText(text));
  Insert.append(head, tag);
};
开发者ID:tinymce,项目名称:tinymce,代码行数:7,代码来源:InitContentBody.ts

示例2: n

 NamedChain.write('container', Chain.async((input, n, die) => {
   const container = Element.fromTag('div');
   Attr.set(container, 'id', 'test-container-div');
   Html.set(container, containerHtml);
   Insert.append(Body.body(), container);
   n(container);
 })),
开发者ID:tinymce,项目名称:tinymce,代码行数:7,代码来源:InlineEditorInsideTableTest.ts

示例3:

const insertElement = (root: Element, elm: Element, forward: boolean) => {
  if (forward) {
    Insert.append(root, elm);
  } else {
    Insert.prepend(root, elm);
  }
};
开发者ID:danielpunkass,项目名称:tinymce,代码行数:7,代码来源:ContentEndpointNavigation.ts

示例4:

const createSection = (scope: Document, listType: ListType): Section => {
  const section: Section = {
    list: Element.fromTag(listType, scope),
    item: Element.fromTag('li', scope)
  };
  Insert.append(section.list, section.item);
  return section;
};
开发者ID:mdgbayly,项目名称:tinymce,代码行数:8,代码来源:ComposeList.ts

示例5:

const createSegment = (scope: Document, listType: ListType): Segment => {
  const segment: Segment = {
    list: Element.fromTag(listType, scope),
    item: Element.fromTag('li', scope)
  };
  Insert.append(segment.list, segment.item);
  return segment;
};
开发者ID:danielpunkass,项目名称:tinymce,代码行数:8,代码来源:ComposeList.ts

示例6: function

const createDomTable = function (table, rows) {
  const tableElement = Replication.shallow(table.element());
  const tableBody = Element.fromTag('tbody');

  InsertAll.append(tableBody, rows);
  Insert.append(tableElement, tableBody);

  return tableElement;
};
开发者ID:abstask,项目名称:tinymce,代码行数:9,代码来源:SimpleTableModel.ts

示例7: next

  return Step.stateful(function (value, next, die) {
    const style = Element.fromTag('style');
    const head = Element.fromDom(doc.dom().head);
    Insert.append(head, style);
    Html.set(style, styles.join('\n'));

    next(Merger.deepMerge(value, {
      style
    }));
  });
开发者ID:abstask,项目名称:tinymce,代码行数:10,代码来源:GuiSetup.ts

示例8: function

const paddEmptyBlock = function (elm) {
  if (Empty.isEmpty(elm)) {
    const br = Element.fromHtml('<br data-mce-bogus="1">');
    Remove.empty(elm);
    Insert.append(elm, br);
    return Option.some(CaretPosition.before(br.dom()));
  } else {
    return Option.none();
  }
};
开发者ID:tinymce,项目名称:tinymce,代码行数:10,代码来源:DeleteElement.ts

示例9: rangeBefore

const insertBlock = (root: Element, forward: boolean, blockName: string, attrs: Record<string, string>) => {
  const block = Element.fromTag(blockName);
  const br = Element.fromTag('br');

  Attr.setAll(block, attrs);
  Insert.append(block, br);
  insertElement(root, block, forward);

  return rangeBefore(br);
};
开发者ID:danielpunkass,项目名称:tinymce,代码行数:10,代码来源:ContentEndpointNavigation.ts

示例10: function

const addStyles = function () {
  const link = Element.fromTag('link');
  Attr.setAll(link, {
    rel: 'Stylesheet',
    href: '/project/js/tinymce/skins/lightgray/skin.mobile.min.css',
    type: 'text/css'
  });
  Class.add(link, styleClass);

  const head = Element.fromDom(document.head);
  Insert.append(head, link);
};
开发者ID:aha-app,项目名称:tinymce-word-paste-filter,代码行数:12,代码来源:TestStyles.ts


注:本文中的@ephox/sugar.Insert.append方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。