0

我需要从日历日期选择器中获取所选日期的帮助。目前我可以选择日期(从...到...)并将其放入文本框中。但我无法将值放入 PHP 变量中。

<head>


    <meta charset="utf-8" />
    <title>jQuery UI Datepicker - Select a Date Range</title>
    <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
    <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
    <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
    <link rel="stylesheet" href="/resources/demos/style.css" />
    <script>
        $(function() {
            $( "#from" ).datepicker({
                defaultDate: "+1w",
                changeMonth: true,
                numberOfMonths: 3,
                onClose: function( selectedDate ) {
                    $( "#to" ).datepicker( "option", "minDate", selectedDate );
                }
            });
            $( "#to" ).datepicker({
                defaultDate: "+1w",
                changeMonth: true,
                numberOfMonths: 3,
                onClose: function( selectedDate ) {
                    $( "#from" ).datepicker( "option", "maxDate", selectedDate );
                }
            });


        });
    </script>
</head>
<body>


        <label for="from">From</label>
        <input type="text" id="from" name="from" />


        <label for="to">to</label>
        <input type="text" id="to" name="to" />

</body>
4

3 回答 3

1

在提交该表单时,您可以从您为日期指定的输入名称中获取该表单。(即)$_POST['from']$_POST['to']

于 2013-06-06T07:47:39.387 回答
0

您没有要提交的表格。您应该首先创建一个表单,如下所示:

<form action="foo.php" method="post">

    <label for="from">From</label>
    <input type="text" id="from" name="from" />


    <label for="to">to</label>
    <input type="text" id="to" name="to" />

    <input type="submit" value="Submit dates">
</form>

在服务器端,如果您通过 POST 提交表单(如上例所示),您可以从 PHP $_POST 变量中获取日期:

$from = $_POST['from'];
$to = $_POST['to'];
于 2013-06-06T07:51:13.813 回答
0

要在 PHP 中检索值,您可以通过两种方式进行。1> 通过放置表单和提交按钮并在 POST 中获取这些值。2>第二个是通过输入框的模糊事件中的AJAX调用。

于 2013-06-06T07:55:32.743 回答