摘要:PHP JQuery UI Date
要做一個PHP+JQuery UI DatePicker
找了網路一個文章,很快就弄出來了。
http://www.formget.com/jquery-datepicker/
將jquery js 匯入後
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script src="http://code.jquery.com/ui/1.11.0/jquery-ui.js"> </script>
並加入
$(document).ready(function() { // Datepicker Popups calender to Choose date. $(function() { $("#datepicker").datepicker(); // Pass the user selected date format. $("#format").change(function() { $("#datepicker").datepicker("option", "dateFormat", $(this).val()); }); }); });
再來就是只要加入
<input name="datepicker" type="text" id="datepicker" value="<?=$datepicker;?>"/>
就搞定了