Diferència entre revisions de la pàgina «Exercici missatge alerta»
De wikiserver
(Es crea la pàgina amb «<source lang="html"> <!doctype html> <html lang="es"> <head> <meta charset="utf-8"> <title>jQuery</title> <style> boton { margin-top: 10px;} </style> </head> <body> <butt…».) |
|||
Línia 23: | Línia 23: | ||
− | + | ||
<source lang="javascript"> | <source lang="javascript"> | ||
alert("Vengo del servidor"); | alert("Vengo del servidor"); | ||
</source> | </source> |
Revisió de 22:38, 30 març 2015
<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8">
<title>jQuery</title>
<style>
boton { margin-top: 10px;}
</style>
</head>
<body>
<button id="boton">Script</button>
</body>
<script>
$(document).ready(function(){
$("#boton").click(function() {
$.getScript("alerta.js");
});
});
</script>
</html>
alert("Vengo del servidor");