回答編集履歴

1

追記

2017/08/02 12:48

投稿

s8_chu
s8_chu

スコア14731

test CHANGED
@@ -51,3 +51,67 @@
51
51
  </html>
52
52
 
53
53
  ```
54
+
55
+ 追記
56
+
57
+ ---
58
+
59
+ ```HTML
60
+
61
+ <!DOCTYPE html>
62
+
63
+ <html lang="ja">
64
+
65
+ <head>
66
+
67
+ <meta charset="utf-8">
68
+
69
+ <title>タイトル</title>
70
+
71
+ <link rel="stylesheet"
72
+
73
+ href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
74
+
75
+ </head>
76
+
77
+ <body>
78
+
79
+ <p>
80
+
81
+ <input type="text" class="Calendar">
82
+
83
+ </p>
84
+
85
+ <p>
86
+
87
+ <input type="text" class="TXT">
88
+
89
+ </p>
90
+
91
+ <script src="http://code.jquery.com/jquery-3.2.1.min.js"></script>
92
+
93
+ <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
94
+
95
+ <script>
96
+
97
+ $(function () {
98
+
99
+ $(".Calendar").datepicker({
100
+
101
+ onSelect: function () {
102
+
103
+ $(this).parent().next().children().focus();
104
+
105
+ }
106
+
107
+ });
108
+
109
+ });
110
+
111
+ </script>
112
+
113
+ </body>
114
+
115
+ </html>
116
+
117
+ ```