gpt4 book ai didi

php - 将我的日期选择器格式从 (YYYY/MM/DD) 更改为 (YYYY-MM-DD)

转载 作者:可可西里 更新时间:2023-11-01 00:28:45 24 4
gpt4 key购买 nike

我的日期选择器格式是 (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>

最佳答案

在 jQuery 脚本代码中只需粘贴代码即可。

$( ".selector" ).datepicker({ 
dateFormat: 'dd-mm-yy'
});

注意:您可以根据需要更改此格式。只需根据您的要求编辑代码即可。

关于php - 将我的日期选择器格式从 (YYYY/MM/DD) 更改为 (YYYY-MM-DD),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49767273/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com