blob: aae32ace2b32aafc3416396790c1efc358a2fd36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
---
title: Document.queryCommandState()
slug: Web/API/Document/queryCommandState
tags:
- API
- DOM
- Document
translation_of: Web/API/Document/queryCommandState
---
{{ApiRef("DOM")}}
## Syntaxe
```js
queryCommandState(String command)
```
## Exemple
TBD
## Spécifications
| Spécification | Statut | Commentaire |
| -------------------------------------------------------------------------------- | -------------------------------- | -------------------- |
| {{SpecName('HTML Editing','#execcommand()','execCommand')}} | {{Spec2('HTML Editing')}} | Définition initiale. |
## Compatibilité des navigateurs
{{Compat("api.Document.queryCommandState")}}
## Voir aussi
- {{domxref("HTMLElement.contentEditable")}}
- {{domxref("document.designMode")}}
- [Rich-Text Editing in Mozilla](/fr/docs/Web/Guide/HTML/Editable_content/Rich-Text_Editing_in_Mozilla)
- Les bogues du navigateur liés à `queryCommandState()`: [Scribe's "Browser Inconsistencies" documentation](https://github.com/guardian/scribe/blob/master/BROWSERINCONSISTENCIES.md#documentquerycommandstate)
|