如何使用PHP从datepicker获取日期?

时间:2015-01-07 13:34:59

标签: php jquery html variables datepicker

如何从jquery UI datepicker中获取日期,并将其值保存在php中的变量中?

我见过很多类似<div id="calendar"></div>的内容,我不明白。

感谢。

这是我的代码

<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery UI Datepicker - Select a Date Range</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.2/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.2/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css">
<script>
$(function() {
$( "#from" ).datepicker({
defaultDate: "+1w",
changeMonth: true,
numberOfMonths: 1,
onClose: function( selectedDate ) {
$( "#to" ).datepicker( "option", "minDate", selectedDate );
var day1 = $(this).datepicker('getDate').getDate();  
var month1 = $(this).datepicker('getDate').getMonth();  
var year1 = $(this).datepicker('getDate').getYear();
}
});
$( "#to" ).datepicker({
defaultDate: "+1w",
changeMonth: true,
numberOfMonths: 1,
onClose: function( selectedDate ) {
$( "#from" ).datepicker( "option", "maxDate", selectedDate );
var day2 = $(this).datepicker('getDate').getDate();  
var month2 = $(this).datepicker('getDate').getMonth();  
var year2 = $(this).datepicker('getDate').getYear();
}
});
});
</script>
</head>
<body>
<label for="from"> FROM </label>
<input type="text" id="from" name="from">
<label for="to"> TO </label>
<input type="text" name="username" id="to" name="to">
<input type="submit" name="boton" value="  Submit ">
</body>
</html>

2 个答案:

答案 0 :(得分:1)

<强> HTML

<input type="text" name="datepicker" value="26-10-15" />

<强> PHP

如果有isset提交表示提交表单

<?php if($_REQUEST['datepicker'])){    
echo $_POST['datepicker'];    
}   ?>

答案 1 :(得分:0)

您必须将datepicker应用于输入字段,如

<input type="text" value="<?php echo date("Y-m-d"); ?>" name="selectedDate"/>

在PHP中,只需检查$_GET$_POST的值:

$selectedDate = isset($_REQUEST['selectedDate']) ? $_REQUEST['selectedDate'] : null;

你有HTML:

<input type="text" name="username" id="to" name="to">

为此你打电话给datepicker:

$( "#to" ).datepicker({/* ... */});

现在你需要做的就是:

使用<form action="mySubmitScript.php" method="post"></form>另外添加<input type="submit" value="submit">

来换行输入字段

在PHP中,您可以:

if (isset($_POST['to'])) {
    $to = $_POST['to'];
}

您可以使用$.ajax() jQuery方法在不重新加载页面的情况下提交表单。