Ejemplo 1: html incluye jquery
<!-- Wrap inside the head tag -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
Ejemplo 2: importación de javascript jquery
//add this line somewhere in the html
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
Ejemplo 3: cómo importar jquery en un archivo js
var script = document.createElement('script');
script.src = 'https://code.jquery.com/jquery-3.4.1.min.js';
script.type = 'text/javascript';
document.getElementsByTagName('head')[0].appendChild(script);
Ejemplo 4: importar jquery en un archivo js
var script = document.createElement('script');
script.src = 'https://code.jquery.com/jquery-3.4.1.min.js';
script.type = 'text/javascript';
document.getElementsByTagName('head')[0].appendChild(script);
Ejemplo 5: archivo js de importación de jquery
$.getScript('ajax/test.js', function() {
alert('Load was performed.');
});
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)