Diferència entre revisions de la pàgina «Exercici missatge alerta»

De wikiserver
Dreceres ràpides: navegació, cerca
(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…».)
(Cap diferència)

Revisió del 21:58, 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>


//codi desde el servidor

alert("Vengo del servidor");