SW/assets/js/selectTicket.js

37 lines
1.1 KiB
JavaScript
Raw Normal View History

2021-05-28 14:21:10 +02:00
/**
* Práctica - Sistemas Web | Grupo D
* CompluCine - FDI-cines
*/
2021-05-27 18:01:24 +02:00
// Método 1: recargar la página y enviar un GET.
window.onload = function(){
var select = document.getElementById("select_cinema");
select.onchange = function(){
location.href += "&cinema=" + $('select[id=cinemas]').val();
}
}
2021-05-28 14:21:10 +02:00
// Método 2: enviar una petición AJAX con POST. ==> (NO FUNCIONA, PERO LA IDEA ERA HACERLO ASÍ PARA EVITAR REFRESCAR LA PÁGINA Y LLENAR LA URL)
2021-05-27 18:01:24 +02:00
/*
$(document).ready(function(){
$("#select_cinema_session").change(function(){
var cinema = $('select[id=cinemas]').val();
//console.log($('select[id=cinemas]').val());
$.ajax({
url : 'index.php',
type : 'POST',
dataType : 'text',
data : 'cinema='+cinema,
cache : false,
async : false,
success: function(data){
console.log(cinema);
},
error: function(response)
{
console.log(response + ' ==> Error al seleccionar el cine')
}
});
});
});
*/