Código de JavaScript - ingresar, mostrar, incrementar y duplicar numero

1.0
estrellaestrellaestrellaestrellaestrella(2)

Publicado el 9 de Mayo del 2018gráfica de visualizaciones de la versión: 1.0
3.199 visualizaciones desde el 9 de Mayo del 2018
estrellaestrellaestrellaestrellaestrella
estrellaestrellaestrellaestrella
estrellaestrellaestrella
estrellaestrella
estrella

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
<!DOCTYPE html>
<html lang="es">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Ejercicio 4 Operaciones sobre un Imput</title>
</head>
<body>
 
  <input type="text" id="idCampo" onclick="pedirValor()" />
  <button id="mostrar" onclick="mostrarValor()" >Mostrar valor</button>
  <button id="sumar" onclick="incremento()">Suma 1</button>
  <button id="duplica" onclick="multiplicar()">Duplica</button>
 
</body>
 
 
<script>
 
function pedirValor(){
  var ingreso = prompt("Ingrese un valor: ");
  document.getElementById("idCampo").value = ingreso;
}
 
function mostrarValor(){
  var valor = document.getElementById("idCampo").value;
  alert(valor);
}
 
function incremento(){
  var incre = parseInt(document.getElementById("idCampo").value);
  document.getElementById("idCampo").value = incre += 1;
}
 
function multiplicar(){
  var multi = parseInt(document.getElementById("idCampo").value);
  document.getElementById("idCampo").value = multi * 2;
}
 
 
</script>
 
</html>



Comentarios sobre la versión: 1.0 (2)

Imágen de perfil
9 de Mayo del 2018
estrellaestrellaestrellaestrellaestrella
No ha dejado ningún comentario
Responder
Imágen de perfil
15 de Junio del 2018
estrellaestrellaestrellaestrellaestrella
No ha dejado ningún comentario
Responder

Comentar la versión: 1.0

Nombre
Correo (no se visualiza en la web)
Valoración
Comentarios...
CerrarCerrar
CerrarCerrar
Cerrar

Tienes que ser un usuario registrado para poder insertar imágenes, archivos y/o videos.

Puedes registrarte o validarte desde aquí.

Codigo
Negrita
Subrayado
Tachado
Cursiva
Insertar enlace
Imagen externa
Emoticon
Tabular
Centrar
Titulo
Linea
Disminuir
Aumentar
Vista preliminar
sonreir
dientes
lengua
guiño
enfadado
confundido
llorar
avergonzado
sorprendido
triste
sol
estrella
jarra
camara
taza de cafe
email
beso
bombilla
amor
mal
bien
Es necesario revisar y aceptar las políticas de privacidad

http://lwp-l.com/s4591