Simulador (Cuando presiona el botón "ejecutar el programa"
se graban todos los cuadros de texto y se ejecuta el primero de la lista
mostrando en una página el resultado)
Problema:
<!DOCTYPE html>
<html>
<head>
<title>Ejemplo de jQuery</title>
<meta charset="UTF-8">
</head>
<body>
<input type="button" id="boton1" value="boton 1">
<br>
<input type="button" id="boton2" value="boton 2">
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="funciones.js"></script>
</body>
</html>
let x = $(document);
x.ready(inicializarEventos);
function inicializarEventos() {
let x = $("#boton1");
x.mousedown(presionaMouse);
x.mouseup(sueltaMouse);
x = $("#boton2");
x.mousedown(presionaMouse);
x.mouseup(sueltaMouse);
}
function presionaMouse() {
$(this).css("background-color", "#fffff0");
}
function sueltaMouse() {
$(this).css("background-color", "#D4D0C8");
}