diff options
author | julieng <julien.gattelier@gmail.com> | 2021-10-02 17:20:14 +0200 |
---|---|---|
committer | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-10-02 17:30:20 +0200 |
commit | c05efa8d7ae464235cf83d7c0956e42dc6974103 (patch) | |
tree | 6ea911b2f2010f63a026de6bb7a1a51e7690a7e1 /files/fr/web/api/htmlselectelement/remove/index.html | |
parent | 13a5e017558b248ee1647d4a5825f183b51f09ad (diff) | |
download | translated-content-c05efa8d7ae464235cf83d7c0956e42dc6974103.tar.gz translated-content-c05efa8d7ae464235cf83d7c0956e42dc6974103.tar.bz2 translated-content-c05efa8d7ae464235cf83d7c0956e42dc6974103.zip |
move *.html to *.md
Diffstat (limited to 'files/fr/web/api/htmlselectelement/remove/index.html')
-rw-r--r-- | files/fr/web/api/htmlselectelement/remove/index.html | 88 |
1 files changed, 0 insertions, 88 deletions
diff --git a/files/fr/web/api/htmlselectelement/remove/index.html b/files/fr/web/api/htmlselectelement/remove/index.html deleted file mode 100644 index 71b6fd591e..0000000000 --- a/files/fr/web/api/htmlselectelement/remove/index.html +++ /dev/null @@ -1,88 +0,0 @@ ---- -title: HTMLSelectElement.remove() -slug: Web/API/HTMLSelectElement/remove -translation_of: Web/API/HTMLSelectElement/remove ---- -<p>{{ APIRef("HTML DOM") }}</p> - -<p>La méthode <code><strong>HTMLSelectElement.remove()</strong></code> enlève l'option à l'index choisi dans la liste des options de cet objet select.</p> - -<h2 id="Syntaxe">Syntaxe</h2> - -<pre class="eval">collection.remove(index); -</pre> - -<h3 id="Parameters">Paramètre</h3> - -<ul> - <li><em>index est</em> un entier long définissant la position du {{ domxref("HTMLOptionElement") }} à enlever de la collection. Si rien n'est trouvé à cette position dans la liste, la méthode n'a aucun effet.</li> -</ul> - -<dl> -</dl> - -<h2 id="Exemple">Exemple</h2> - -<pre class="brush: js">var sel = document.getElementById("maListe"); -sel.remove(1); - -/* - Prend l'objet select existant suivant : - - <select id="maListe" name="maListe"> - <option value="1">Option: Value 1</option> - <option value="2">Option: Value 2</option> - <option value="3">Option: Value 3</option> - </select> - - Et le transforme en: - - <select id="maListe" name="maListe"> - <option value="1">Option: Value 1</option> - <option value="3">Option: Value 3</option> - </select> -*/ - </pre> - -<h2 id="Spécifications">Spécifications</h2> - -<table class="standard-table"> - <tbody> - <tr> - <th scope="col">Spécification</th> - <th scope="col">Status</th> - <th scope="col">Comment</th> - </tr> - <tr> - <td>{{SpecName('HTML WHATWG', '#dom-select-remove', 'HTMLSelectElement.remove()')}}</td> - <td>{{Spec2('HTML WHATWG')}}</td> - <td> </td> - </tr> - <tr> - <td>{{SpecName('HTML5 W3C', 'forms.html#dom-select-remove', 'HTMLSelectElement.remove()')}}</td> - <td>{{Spec2('HTML5 W3C')}}</td> - <td>Is a snapshot of {{SpecName("HTML WHATWG")}}.</td> - </tr> - <tr> - <td>{{SpecName('DOM2 HTML', 'html.html#ID-33404570', 'HTMLSelectElement.remove()')}}</td> - <td>{{Spec2('DOM2 HTML')}}</td> - <td> </td> - </tr> - <tr> - <td>{{SpecName('DOM1', 'level-one-html.html#ID-33404570', 'HTMLSelectElement.remove()')}}</td> - <td>{{Spec2('DOM1')}}</td> - <td>Initial definition.</td> - </tr> - </tbody> -</table> - -<h2 id="Browser_compatibility">Compatibilité des navigateurs</h2> - -<p>{{Compat("api.HTMLSelectElement.remove")}}</p> - -<h2 id="See_also">Voir aussi</h2> - -<ul> - <li>{{ domxref("ChildNode.remove") }}, la méthode appelée quand remove est créé sans argument pour un {{ domxref("HTMLSelectElement") }}.</li> - <li>{{domxref("HTMLSelectElement") }} qui possède cette méthode.</li> -</ul> |