Making the selected text bold:
document.execCommand('bold', null, null);
When the user selects that piece of text again (or a part of it), how can you know that it has been made bold?
Bold is just an example. The `commandName` could be `underline`, `heading`, `createLink`, ...
以上就是HTML5 contentEditable check if format is applied with execCommand?的详细内容,更多请关注web前端其它相关文章!