質問編集履歴

2

html全体のソースコードを追加しました

2018/02/03 12:17

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -27,6 +27,54 @@
27
27
  ↓送信元phpファイル①内↓
28
28
 
29
29
  ```ここに言語を入力
30
+
31
+ <!DOCTYPE html>
32
+
33
+ <html lang="ja">
34
+
35
+ <head>
36
+
37
+ <meta charset="utf-8">
38
+
39
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
40
+
41
+ <meta name="viewport" content="width=device-width, initial-scale=1">
42
+
43
+ <title>sortable</title>
44
+
45
+ <link href="css/bootstrap.min.css" rel="stylesheet" type="text/css">
46
+
47
+ <link rel="stylesheet" type="text/css" href="css/style.css">
48
+
49
+ <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
50
+
51
+ <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
52
+
53
+ <script type="text/javascript"src="js/jquery.ui.touch-punch.js"></script>
54
+
55
+ <script src="js/bootstrap.min.js"></script>
56
+
57
+ </head>
58
+
59
+ <body>
60
+
61
+
62
+
63
+
64
+
65
+ <ul id="datas">
66
+
67
+ <li id="1"></li>
68
+
69
+ <li id="2"></li>
70
+
71
+ <li id="3"></li>
72
+
73
+ <li id="4"></li>
74
+
75
+ <li id="5"></li>
76
+
77
+ </ul>
30
78
 
31
79
  <script>
32
80
 
@@ -61,6 +109,10 @@
61
109
 
62
110
 
63
111
  </script>
112
+
113
+ </body>
114
+
115
+ </html>
64
116
 
65
117
  ```
66
118
 

1

ライブラリの日本語リファレンスURLを追加しました

2018/02/03 12:17

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -17,6 +17,10 @@
17
17
  これは何がおかしいのでしょうか?
18
18
 
19
19
  レベルの低い質問かと思いますが、よろしくお願い致します。
20
+
21
+
22
+
23
+ [sortable](http://stacktrace.jp/jquery/ui/interaction/sortable.html)
20
24
 
21
25
 
22
26