viernes, 26 de junio de 2020

JQuery desde nodeJS

JQuery desde nodeJS

Instalamos el paquete jQuery:
 
npm install jquery

Creamos un archivo llamado miScript.js:  
 
var $ = require('jquery');
var $boton = null;
$(document).ready(function () {
$boton = $('button#boton');
$boton.click(function(){
console.log('pulsado');
});
});

Creamos un archivo llamado index.html:
 
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="./viewsfiles/javascripts/miSriptNavegador.js"></script>
</head>
<body>
<button id="boton" name="boton">Pulsar</button>
</body>
</html>

Donde insertamos el script: 
 
<script src="./viewsfiles/javascripts/miSriptNavegador.js"></script>

Ejecutamos el comando siguiente para adaptar el modulo a nodeJS:
 
npm run browser

No hay comentarios:

Publicar un comentario