Skip to content

Instantly share code, notes, and snippets.

@kakari2
Created November 28, 2015 18:12
Show Gist options
  • Select an option

  • Save kakari2/f7db6bf9db21df793733 to your computer and use it in GitHub Desktop.

Select an option

Save kakari2/f7db6bf9db21df793733 to your computer and use it in GitHub Desktop.
<!doctype html>
<html lang="ja">
<head>
<meta charset="utf-8" />
<title></title>
<script src="jquery-1.11.3.min.js"></script>
<script src="jquery-ui.min.js"></script>
<script type="text/javascript" src="jquery-ui-i18n.min.js"></script>
<link rel="stylesheet" href="jquery-ui.min.css" />
<script>
$(function() {
$.datepicker.setDefaults($.datepicker.regional['ja']);
$( "#datepicker" ).datepicker({
});
});
</script>
</head>
<body>
<p>日付: <input type="text" id="datepicker" /></p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment