我使用bootstrap和jquery创建一个使用php文件搜索数据库的表单,我设法添加过滤器没有问题,我的问题是现在我已经使用Bootstrap添加了一个日期选择器 - DateTimePicker,虽然在表单中显示日期没有问题,但我似乎无法将日期的实际字符串作为变量存入我的php文件。
这是现在的表单HTML:
<form id="buscarInv" action="index.php" method="post" class="navbar-form pull-left" role="search">
<div class="form-group">
<div class="input-group-btn search-panel">
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
<span id="search_concept">Filtrar</span> <span class="caret"></span>
</button>
<ul class="dropdown-menu" id="search-filter" role="menu">
<?php print("$salida");?>
</ul>
<input type="hidden" name="search_param" value="" id="search_param">
<input type="text" class="form-control" name="searchinv" placeholder="Buscar" onkeydown="searchq();">
</div>
</div>
<div class='input-group date' name='datetimepicker1' id='datetimepicker1'>
<span class="input-group-addon">
<span class="glyphicon glyphicon-calendar"></span> Date
</span>
<input type='text' data-date-format="YYYY-MM-DD" class="form-control" placeholder="Fecha" name="fechaC" id="fechaC">
</div>
</form>
这里是DateTimePicker脚本和将输入发送到php文件的脚本。 的DateTimePicker:
$(function () {
$('#datetimepicker1').datetimepicker({format: 'YYYY-MM-DD'});
});
搜索:
function searchq(){
var searchTxt = $("input[name='searchinv']").val();
var filter = $("input[name='search_param']").val();
var fechaEnv = $("input[name='fechaC']").val();
$.post("search.php",{searchVal: searchTxt, filter:filter, fechaEnv:fechaEnv}, function(output){
$("#output").html(output);
});
}
我尝试使用name =&#39; datetimepicker1&#39;,尝试在datetimepicker函数中设置fechaC的值,但似乎没有任何效果,我错过了什么?
更新:添加了PHP
$output='<thead>
<tr>
<th>Producto</th>
<th>Cantidad</th>
<th>Precio</th>
<th>Locacion</th>
<th>Fecha</th>
</tr>
</thead>
<tbody>';
$idcat='';
$fechaT = date('Y-m-d');
if(isset($_POST['searchVal'])){
$searchq = $_POST['searchVal'];
if(isset($_POST['fechaEnv'])){
$fechaT = $fechaEnv;
$output .= '<tr><td>Date should be displayed here: '.$fechaEnv.'</td></tr>';
}
然而,当我回显输出时,它显示为:&#34;日期应显示在此处:&#34;没有添加日期
答案 0 :(得分:0)
忘记收集fechaEnv,如$ _POST, $ fechaEnv = $ _POST [&#39; fechaEnv&#39;]; 。
if(isset($_POST['fechaEnv'])){
//$fechaT = $fechaEnv;
$fechaEnv= $_POST['fechaEnv'];
$output .= '<tr><td>Date should be displayed here: '.$fechaEnv.'</td></tr>';
}