blob: 9e31a74d0f09aeca2bd8cb6c2cdbf20007c5e2b9 (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
---
title: Document.queryCommandSupported()
slug: Web/API/Document/queryCommandSupported
tags:
- API
- Commandes
- DOM
- Document
- Méthodes
- editeur
translation_of: Web/API/Document/queryCommandSupported
---
{{ApiRef("DOM")}}
La méthode **`Document.queryCommandSupported()`** indique si la commande d'éditeur spécifiée est prise en charge par le navigateur.
## Syntaxe
isSupported = document.queryCommandSupported(command);
### Paramètres
- `command`
- : La commande pour laquelle on veut déterminer si elle est prise en charge.
### Valeur de retour
Renvoie un {{jsxref("Boolean")}} qui est `true` (_vrai_) si la commande est prise en charge et `false` (_faux_) sinon.
## Notes
La commande `'paste'` (_coller_) renvoie `false` (_faux_), pas seulement si la fonctionnalité n'est pas disponible, mais également si le script l'appelant a des privilèges insuffisants pour réaliser l'action [\[1\]](#note1).
## Exemple
```js
var flg = document.queryCommandSupported("SelectAll");
if(flg) {
// ...Faire quelque chose
}
```
## Spécifications
| Spécification | Statut | Commentaire |
| -------------------------------------------------------------------------------------------------------- | -------------------------------- | -------------------- |
| {{SpecName('HTML Editing','#querycommandsupported()','querycommandsupported')}} | {{Spec2('HTML Editing')}} | Définition initiale. |
## Compatibilité des navigateurs
{{Compat("api.Document.queryCommandSupported")}}
## Voir aussi
- {{domxref("Document.execCommand()")}}
- {{domxref("Document.queryCommandEnabled()")}}
|