-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlistadepeliculas.js
46 lines (36 loc) · 965 Bytes
/
listadepeliculas.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
$(document).ready(function(){
$('#guardarpelicula').click(function(i){
let dato ={
titulo: $("#titulo").val(),
anio: $("#anio").val(),
puntaje:$("#puntaje").val(),
duracion:$("#duracion").val(),
descripcion:$("#descripcion").val(),
genero:$("#genero").val(),
imagen:$("#imagen").val()
}
$.post('go.php',dato,function(respuesta){
console.log(dato);
alert("se guardo la pelicula");
});
i.preventDefault();
});
$('#descargartxt').click(function(){
$.ajax({
url: 'generarArchivo.php',
type : 'POST',
success: function(data) {
alert("descargado");
}
});
});
$('#descargarjson').click(function(){
$.ajax({
url: 'generarArchivoJson.php',
type : 'POST',
success: function(data) {
alert("descargado json");
}
});
});
});