我的datepicker格式是(YYYY / MM / DD),我的sql只读取(YYYY-MM-DD)格式 我的系统只接受特定格式或节目报告无法正常工作。 有什么我可以添加,所以当我点击具体日期格式将是(YYYY-MM-DD)
我该怎么办请帮助我。 H 感谢
这是我的php文件
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link rel="stylesheet" href="/resources/demos/style.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
$( function() {
$( "#datepicker" ).datepicker();
} );
</script>
</head>
<?php include('session.php'); ?>
<?php include('header.php'); ?>
<body>
<div id="wrapper">
<?php include('navbar.php'); ?>
<div style="height:50px;"></div>
<div id="page-wrapper">
<div class="container-fluid">
<div class="row">
<div class="col-lg-12">
<h1 class="page-header">Inventory Report</h1>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<table width="100%" class="table table-striped table-bordered table-hover" id="invTable">
<thead>
<tr>
<center>
<form action="total_inventory.php" method="post">
<p>From: <input type="text" class="datepicker" placeholder="E.G.(2018-01-14)" name="dayfrom" required pattern="[0-9]{4}+[0-9]+[0-9]" id="datepicker">
To: <input type="text" class="datepicker" placeholder="E.G.(2018-02-11)" name="dayto" required pattern="[0-9]{4}+[0-9]+[0-9]" id="datepicker1">
<input type="submit" value="Show Report" name="salesbtn" ></form>
</center>
<th class="hidden"></th>
<th>Date</th>
<th>User</th>
<th>Action</th>
<th>Product Name</th>
<th>Quantity</th>
</tr>
</thead>
<?php include('script.php'); ?>
<?php include('modal.php'); ?>
<?php include('add_modal.php'); ?>
<script src="custom.js"></script>
</body>
</html>
答案 0 :(得分:2)
在jQuery脚本代码中只需粘贴代码。
$( ".selector" ).datepicker({
dateFormat: 'dd-mm-yy'
});
注意:您可以根据需要更改此格式。只需根据您的要求编辑代码。
答案 1 :(得分:1)
在日期选择器代码中添加日期选择器格式,如下所示。
$( "#datepicker" ).datepicker({ dateFormat: 'yy-mm-dd' });
将类用于所有日期字段,如下所示: $(“。datepicker”)。datepicker({dateFormat:'yy-mm-dd'});
答案 2 :(得分:1)
您可以通过配置修改您调用datepicker的方式,如下所示。我看到你正在使用jquery-ui datepicker。
这应该有效:
$( function() {
$( "#datepicker" ).datepicker({dateFormat: 'yyyy-mm-dd'});
});