我想使用 jquery 日期选择器选择或查询日期。我有日期列字段,如下图所示。如果我选择需要生成的日期并在给定日期显示结果。例如,我选择日期 10-12-2012 并显示输入的所有数据那个日期。请帮帮我!
问问题
177 次
1 回答
0
Correct me if i'm wrong, but it seems you're trying to perform a query statement when a date from date-picker is selected. 为此,您应该使用 jquery.post 或 .get 功能。
首先,您需要创建一个 php 文件,该文件使用带有要搜索的日期的 $_GET 或 $_POST 消息执行查询语句。
就像是
<?php if(isset($_GET['pickdate'])){
//set a variable $datepicked
//Prepare your SQL statement "Select * from table where date='$datepicked'"
//run the query
//echo the result with divs and style stuff
} ?>
然后在您的 jquery 函数中,您只需通过事件触发的 .get 函数调用 php 文件
$.get('phppickdate.php', {pickdate:datepicked },function(data) {
$('.result').html(data);
});
在同一个 html/php 文档中创建一个 div
<div class="result"></div>
我不记得很好的代码,但它是这样的。
于 2012-12-03T19:41:21.243 回答