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


TypeScript CaretContainer.insertBlock函数代码示例

本文整理汇总了TypeScript中tinymce/core/caret/CaretContainer.insertBlock函数的典型用法代码示例。如果您正苦于以下问题:TypeScript insertBlock函数的具体用法?TypeScript insertBlock怎么用?TypeScript insertBlock使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


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

示例1: function

 suite.test('hasContent', function () {
   setupHtml('<span contentEditable="false">1</span>');
   const caretContainerBlock = CaretContainer.insertBlock('p', getRoot().firstChild, true);
   LegacyUnit.equal(CaretContainer.hasContent(caretContainerBlock), false);
   caretContainerBlock.insertBefore(document.createTextNode('a'), caretContainerBlock.firstChild);
   LegacyUnit.equal(CaretContainer.hasContent(caretContainerBlock), true);
 });
开发者ID:aha-app,项目名称:tinymce-word-paste-filter,代码行数:7,代码来源:CaretContainerTest.ts

示例2: setupHtml

    Step.sync(function () {
      setupHtml('<span contentEditable="false">1</span><span contentEditable="false">2</span>');

      CaretContainer.insertBlock('p', getRoot().childNodes[1], true);
      Assertions.assertEq('Should be block container', true, CaretContainer.isCaretContainerBlock(getRoot().childNodes[1]));

      const pos = CaretContainerRemove.removeAndReposition(getRoot().childNodes[1], new CaretPosition(getRoot(), 3));
      Assertions.assertEq('Should be changed offset', 2, pos.offset());
      Assertions.assertDomEq('Should be unchanged container', Element.fromDom(getRoot()), Element.fromDom(pos.container()));
      Assertions.assertEq('Should not be block container', false, CaretContainer.isCaretContainerBlock(getRoot().childNodes[1]));
    })
开发者ID:aha-app,项目名称:tinymce-word-paste-filter,代码行数:11,代码来源:CaretContainerRemoveTest.ts


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