カレンダーアイコン付き jQuery Datepicker
>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"> <script src="//code.jquery.com/jquery-1.12.4.js"></script> <script src="//code.jquery.com/ui/1.12.1/jquery-ui.js"></script> <script> $( function() { $( "#datepicker" ).datepicker({ showOn: "button", buttonImage: "images/calendar.gif", buttonImageOnly: true, buttonText: "Select date" }); } ); </script> <p><input type="text" id="datepicker"></p> |
コメント