Exercici missatge alerta

De wikiserver
La revisió el 21:58, 30 març 2015 per Jnoguera (Discussió | contribucions) (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…».)
(dif) ← Versió més antiga | Versió actual (dif) | Versió més nova → (dif)
Dreceres ràpides: navegació, cerca
<!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");