Para esto usamos la funcion
getElementsByName
de
document
<!DOCTYPE html>
<html>
<body>
<p>Puedes cambiar el texto</p>
<input name="nombre1" type="text" value="hola"><br>
<p>Click para mostar los valores.</p>
<button onclick="miFuncion()">Click</button>
<p id="salida"></p>
<script>
function miFuncion() {
var x = document.getElementsByName("nombre1")[0];
document.getElementById("salida").innerHTML = x.value;
}
</script>
</body>
</html>
- https://developer.mozilla.org/es/docs/Web/API/Document/getElementsByName
- https://www.w3schools.com/jsref/met_doc_getelementsbyname.asp
- http://lineadecodigo.com/javascript/getelementsbyname/
No hay comentarios.:
Publicar un comentario