aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/document/querycommandsupported/index.html
blob: 986cbd52e3dd69bb3018093cccd0e1e8f3baba03 (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
title: Document.queryCommandSupported()
slug: Web/API/Document/queryCommandSupported
tags:
  - API
  - Commandes
  - DOM
  - Document
  - Méthodes
  - editeur
translation_of: Web/API/Document/queryCommandSupported
---
<div>{{ApiRef("DOM")}}</div>

<p>La méthode <code><strong>Document.queryCommandSupported()</strong></code> indique si la commande d'éditeur spécifiée est prise en charge par le navigateur.</p>

<h2 id="Syntaxe">Syntaxe</h2>

<pre class="syntaxbox"><var>isSupported</var> = document.queryCommandSupported(<var>command</var>);
</pre>

<dl>
 <dt>
 <h3 id="Paramètres">Paramètres</h3>
 </dt>
 <dt><code>command</code></dt>
 <dd>La commande pour laquelle on veut déterminer si elle est prise en charge.</dd>
</dl>

<h3 id="Valeur_de_retour">Valeur de retour</h3>

<p>Renvoie un {{jsxref("Boolean")}} qui est <code>true</code> (<em>vrai</em>) si la commande est prise en charge et <code>false</code> (<em>faux</em>) sinon.</p>

<h2 id="Notes">Notes</h2>

<p>La commande <code>'paste'</code> (<em>coller</em>) renvoie <code>false</code> (<em>faux</em>), 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 <a href="#note1">[1]</a>.</p>

<h2 id="Exemple">Exemple</h2>

<pre class="brush:js">var flg = document.queryCommandSupported("SelectAll");

if(flg) {
  // ...Faire quelque chose
}
</pre>

<h2 id="Spécifications">Spécifications</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Spécification</th>
   <th scope="col">Statut</th>
   <th scope="col">Commentaire</th>
  </tr>
  <tr>
   <td>{{SpecName('HTML Editing','#querycommandsupported()','querycommandsupported')}}</td>
   <td>{{Spec2('HTML Editing')}}</td>
   <td>Définition initiale.</td>
  </tr>
 </tbody>
</table>

<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>

<p>{{Compat("api.Document.queryCommandSupported")}}</p>

<h2 id="Voir_aussi">Voir aussi</h2>

<ul>
 <li>{{domxref("Document.execCommand()")}}</li>
 <li>{{domxref("Document.queryCommandEnabled()")}}</li>
</ul>