質問編集履歴
1
追記部分
test
CHANGED
File without changes
|
test
CHANGED
@@ -177,3 +177,61 @@
|
|
177
177
|
|
178
178
|
|
179
179
|
一人では解決することが出来なかったので、アドバイス頂けると助かります。
|
180
|
+
|
181
|
+
|
182
|
+
|
183
|
+
|
184
|
+
|
185
|
+
---追記--
|
186
|
+
|
187
|
+
|
188
|
+
|
189
|
+
```html
|
190
|
+
|
191
|
+
<form action="<%=request.getContextPath()%>/Addr_delete" id="delete" method="post" onsubmit="return click()">
|
192
|
+
|
193
|
+
<input type="hidden" name="delete_id" value="<%=adid.get(index)%>">
|
194
|
+
|
195
|
+
<button type="submit" name="button" id="button123" class="inline-block">削除</button>
|
196
|
+
|
197
|
+
</form>
|
198
|
+
|
199
|
+
|
200
|
+
|
201
|
+
<script>
|
202
|
+
|
203
|
+
let button = document.getElementById('button123');
|
204
|
+
|
205
|
+
button.addEventListener('click', function click() {
|
206
|
+
|
207
|
+
if(window.confirm('本当に削除しますか')){
|
208
|
+
|
209
|
+
|
210
|
+
|
211
|
+
return false;
|
212
|
+
|
213
|
+
}else{
|
214
|
+
|
215
|
+
return true;
|
216
|
+
|
217
|
+
|
218
|
+
|
219
|
+
}
|
220
|
+
|
221
|
+
});
|
222
|
+
|
223
|
+
|
224
|
+
|
225
|
+
</script>
|
226
|
+
|
227
|
+
```
|
228
|
+
|
229
|
+
1.調べて上記のコードを書いてみましたが、上記のコードでも上手くいきません
|
230
|
+
|
231
|
+
|
232
|
+
|
233
|
+
|
234
|
+
|
235
|
+
2.<button type="submit" name="button" id="button123" class="inline-block">削除</button>
|
236
|
+
|
237
|
+
のコードの type=button とすると送信も javascriptも実行されなくなります。
|