答案 0 :(得分:1)
我发现我可以使用单线来检查风格。无论选择与否,它都有效。
editorState.getCurrentInlineStyle().has(style);
答案 1 :(得分:1)
function getInlineStylesForCollapsedSelection(editorState, selection) {
if (selection.isCollapsed() === false) {
throw new Error('Selection must be collapsed');
}
return editorState
.getCurrentContent()
.getBlockForKey(selection.getStartKey())
.getInlineStyleAt(selection.getStartOffset());
}