|
|
|
วิธีเปลี่ยน format รูปแบบวันที่ที่จะทำการบึนทึกลงฐานข้อมูล |
|
|
|
|
|
|
|
มีวิธีเปลี่ยน ฟอร์แมต ให้ สามารถ นำไปบันทึกลงฐานข้อมูลได้ไม๊คับ
นี่เป้นโค้ดน่ะคับ
Code (PHP)
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery UI Datepicker - Select a Date Range</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.9.1.js"></script>
<script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css">
<script>
$(function() {
$( "#from" ).datepicker({
defaultDate: "+1w",
changeMonth: true,
numberOfMonths: 3,
onClose: function( selectedDate ) {
$( "#to" ).datepicker( "option", "minDate", selectedDate );
}
});
$( "#to" ).datepicker({
defaultDate: "+1w",
changeMonth: true,
numberOfMonths: 3,
onClose: function( selectedDate ) {
$( "#from" ).datepicker( "option", "maxDate", selectedDate );
}
});
});
</script>
</head>
<body>
<label for="from">From</label>
<input type="text" id="from" name="from">
<label for="to">to</label>
<input type="text" id="to" name="to">
</body>
</html>
Tag : PHP, Ajax, jQuery
|
|
|
|
|
|
Date :
2014-01-26 19:43:41 |
By :
มาย |
View :
904 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
น่าจะตัวเดียวกันกับที่ผมใช้นะ
Code (PHP)
<script type="text/javascript">
$(function() {
$( "#from" ).datepicker({
dateFormat: "yy-mm-dd" ,
defaultDate: "+1w",
changeMonth: true,
numberOfMonths: 3,
onClose: function( selectedDate ) {
$( "#to" ).datepicker( "option", "minDate", selectedDate );
}
});
$( "#to" ).datepicker({
dateFormat: "yy-mm-dd" ,
defaultDate: "+1w",
changeMonth: true,
numberOfMonths: 3,
onClose: function( selectedDate ) {
$( "#from" ).datepicker( "option", "maxDate", selectedDate );
}
});
});
</script>
|
|
|
|
|
Date :
2014-01-26 23:21:52 |
By :
arm8957 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|