blob: 43f3df8e37235e0c04464730cc66177e8e4c72b0 (
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
|
---
title: HTMLFormElement.reset()
slug: Web/API/HTMLFormElement/reset
tags:
- API
- HTML DOM
- HTMLFormElement
- Method
- NeedsMarkupWork
- NeedsSpecTable
- Referencia
translation_of: Web/API/HTMLFormElement/reset
---
<div>{{APIRef("HTML DOM")}}</div>
<p>El método <strong><code>HTMLFormElement.reset()</code></strong> restaura los elementos de un formulario a sus valores por defecto. Este método hace lo mismo que haciendo clic en el botón de restauración.</p>
<p>Si un control del formulario (como el botón de restaurar) tiene el nombre o un id de <em>reset</em> enmascarará el método de restauración del formulario. No restaura otros atributos del campo, como el de <code>disabled</code>.</p>
<h2 id="Syntax" name="Syntax">Síntaxis</h2>
<pre class="syntaxbox notranslate"><em>HTMLFormElement</em>.reset()
</pre>
<h2 id="Example" name="Example">Ejemplo</h2>
<pre class="brush: js notranslate">document.getElementById('myform').reset();
</pre>
<h2 id="Specification" name="Specification">Especificaciones</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Especificación</th>
<th scope="col">Estado</th>
<th scope="col">Comentario</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('HTML WHATWG', '#dom-form-reset', 'HTMLFormElement: reset')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td></td>
</tr>
</tbody>
</table>
<h2 id="Compatibilidad_con_navegadores">Compatibilidad con navegadores</h2>
<p>{{Compat("api.HTMLFormElement.reset")}}</p>
<h2 id="Vea_también">Vea también</h2>
<ul>
<li>{{domxref("HTMLFormElement.submit()")}}</li>
</ul>
|