質問編集履歴
1
jQueryソースコードのコピペミスを修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -88,38 +88,6 @@
|
|
88
88
|
|
89
89
|
type: 'GET',
|
90
90
|
|
91
|
-
/* json形式で受け取るためdataTypeを変更 */
|
92
|
-
|
93
|
-
dataType: 'json',
|
94
|
-
|
95
|
-
data : {
|
96
|
-
|
97
|
-
order : order,
|
98
|
-
|
99
|
-
id : id
|
100
|
-
|
101
|
-
}
|
102
|
-
|
103
|
-
}).done(function(data){
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
console.log(data);$('button.delete').on('click', function() {
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
var order = $(this).data('order');
|
112
|
-
|
113
|
-
var id = $(this).data('id');
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
$.ajax({
|
118
|
-
|
119
|
-
url: 'delete.php',
|
120
|
-
|
121
|
-
type: 'GET',
|
122
|
-
|
123
91
|
dataType: 'json',
|
124
92
|
|
125
93
|
data : {
|
@@ -134,9 +102,13 @@
|
|
134
102
|
|
135
103
|
alert('削除しました。');
|
136
104
|
|
105
|
+
|
106
|
+
|
137
107
|
}).fail(function(data){
|
138
108
|
|
139
109
|
alert('削除に失敗しました');
|
110
|
+
|
111
|
+
|
140
112
|
|
141
113
|
});
|
142
114
|
|