更改datepicker后连续更新日期字段

时间:2016-04-20 10:14:20

标签: php jquery datepicker

我有一个表,其中包含可以通过datepicker更改的日期列。

<td>
   <div class="input-group date" data-provide="datepicker">
        <input type="text" class="form-control" name="dataPrevisao" id="dataPrevisao" rel="<?php echo odbc_result($resultado,"stamp");?>" value="<?php echo odbc_result($resultado,"dvalor");?>" />
        <div class="input-group-addon">
             <span class="glyphicon glyphicon-calendar small"></span>
        </div>
   </div>

我想要做的是,在更改日期之后,寄存器会在表格中自动更新。 为此,我有一个php文件 - changePrevisao.php:

<?php include("includes/odbc.ini"); 
$iniciais=str_replace(' ', '', $_SESSION['iniciais']);
$stamp=$_POST['stamp']; 
$dataP=$_POST['dataP']; 
$query = "  update od set marcada=1, data='$dataP', usrdata=convert(varchar(10),getdate(),112),
            usrhora=right(convert(varchar(19),getdate(),121),8), usrinis='$iniciais' where od.odstamp='$stamp'";
odbc_exec($sqlconnect,$query); 
?>

我在为ajax构建用户函数时遇到问题,允许将数据传递给php文件,是否有人可以帮助我?

1 个答案:

答案 0 :(得分:0)

经过搜索和测试,我创建了以下功能:

<script>
    $(document).ready(function(){
    $(document).on('change', '#dataPrevisao', function () {
        var stamp = $(this).attr('rel');
        var dataP = $(this).val();
        var dataString = 'stamp='+ stamp +'&dataP='+ dataP;
        $.ajax({
            type: "POST",
            url: "changePrevisao.php",
            data: dataString,
            cache: false,
            success: function(new_data){
                    $(stamp).html(new_data);
                    $(stamp).dialog();
                    alert('Load was performed.');
    }
   });
  });
});
</script>

现在我可以更新数据库中的日期,但结果并不像我预期的那样,只有当我直接更改输入而不是通过datepicker时才会发生更改。我需要在函数中更改什么才能考虑到datepicker所做的更改?