No Description

testFrontEnd.php 485B

123456789101112131415161718192021
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>datepicker demo</title>
  6. <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css">
  7. <script src="//code.jquery.com/jquery-1.12.4.js"></script>
  8. <script src="//code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
  9. </head>
  10. <body>
  11. <!-- <div id="datepicker"></div> -->
  12. <input type="date">
  13. <script>
  14. $( "#datepicker, input[type='date']" ).datepicker();
  15. </script>
  16. </body>
  17. </html>