本文整理汇总了TypeScript中@ephox/sugar.TextContent类的典型用法代码示例。如果您正苦于以下问题:TypeScript TextContent类的具体用法?TypeScript TextContent怎么用?TypeScript TextContent使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了TextContent类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: function
const fromLink = function (link) {
const text = TextContent.get(link);
const url = Attr.get(link, 'href');
const title = Attr.get(link, 'title');
const target = Attr.get(link, 'target');
return {
url: defaultToEmpty(url),
text: text !== url ? defaultToEmpty(text) : '',
title: defaultToEmpty(title),
target: defaultToEmpty(target),
link: Option.some(link)
};
};
示例2:
text.each(function (newText) {
TextContent.set(link, newText);
});
示例3:
Chain.op((snippet) => {
const text = TextContent.get(snippet);
return Assertions.assertEq('Assert ' + selector + ' has innerText ' + expected, expected, text);
})