Grrrrrrrrr sigo sin poderlo resolver,
Alguien que me apoye? Mi codigo es...
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<title>Listado de servicios por fechas...</title>
<link rel="stylesheet" href="css/calendario.css"/>
<script type="text/javascript" src="jquery/jquery10.2.js"></script>
<script src="jquery/calendario.js"></script>
<script>
$(function()
{
$("#datepicker1").datepicker(
{
//defaultDate: "+1w",
changeMonth: false,
numberOfMonths: 1,
onClose: function( selectedDate )
{
$("#datepicker2").datepicker( "option", "minDate", selectedDate );
}
});
$("#datepicker2").datepicker(
{
//defaultDate: "+1w",
changeMonth: true,
numberOfMonths: 2,
onClose: function( selectedDate )
{
$("#datepicker1").datepicker( "option", "maxDate", selectedDate );
}
});
});
</script>
<script lang="JavaScript">
$(document).ready(function()
{
$("#boton").click(function(evento)
{
evento.preventDefault();
var xfecha1=document.form1.datepicker1.value;
var xfecha2=document.form1.datepicker2.value;
$("#centro").load("paginas/cslf.php", {fecha1: xfecha1, fecha2: xfecha2}, function()
{
// alert("recibidos los datos por ajax"+ xfecha1);
});
});
})
</script>
</head>
<body>
<div id="centrar" style="margin: 0 35%;">
<h4> <b>LISTADO DE SERVICIOS POR FECHAS.</b></h4>
<br />
<table style="text-align: center; font-family: Helvetica;">
<tr>
<td>
<form action="paginas/cslf.php" name="form1" method="post" >
<fieldset><legend><b>Listado por fechas.</b></legend>
<table>
<tr>
<td>
Fecha Inicial:
</td>
<td>
<input type="text" id="datepicker1" readonly="yes" name="datepicker1" placeholder="dd-mm-aaaa" />
<!-- <input type="date" id="" name="fecha1" placeholder="dd-mm-aaaa" /> !-->
</td>
</tr>
<tr>
<td>
Fecha Final:
</td>
<td>
<input type="text" id="datepicker2" readonly="yes" name="datepicker2" placeholder="dd-mm-aaaa"/>
<!-- <input type="date" id="" name="fecha2" placeholder="dd-mm-aaaa" /> !-->
</td>
</tr>
</table>
<br />
<input type="submit" value="Ver..." id="boton"/>
</fieldset>
</form>
</td>
</tr>
</table>
</div>
</body>
</html>