回答編集履歴
1
sample
test
CHANGED
@@ -5,3 +5,53 @@
|
|
5
5
|
紐付けていき、最大数までユーザーidを登録していく流れです。
|
6
6
|
|
7
7
|
参加決定は、submitしてもajax(fetch)してもどちらでもよいでしょう
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
# sample
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
html内で完結しているのであればこんな感じ
|
16
|
+
|
17
|
+
(60回押すのが面倒なのでとりあえず最初からあと5回にしておきます)
|
18
|
+
|
19
|
+
```javascript
|
20
|
+
|
21
|
+
<script>
|
22
|
+
|
23
|
+
$(function(){
|
24
|
+
|
25
|
+
$('#attend').on('click',function(e){
|
26
|
+
|
27
|
+
e.preventDefault();
|
28
|
+
|
29
|
+
var count=$('#count').text()-1;
|
30
|
+
|
31
|
+
if(count<0) count=0;
|
32
|
+
|
33
|
+
$('#count').text(count);
|
34
|
+
|
35
|
+
});
|
36
|
+
|
37
|
+
});
|
38
|
+
|
39
|
+
</script>
|
40
|
+
|
41
|
+
<div class="top-banner">
|
42
|
+
|
43
|
+
<h1>
|
44
|
+
|
45
|
+
60名集客まで残り<span id="count">5</span>名
|
46
|
+
|
47
|
+
</h1>
|
48
|
+
|
49
|
+
<form>
|
50
|
+
|
51
|
+
<input type="submit" value="参加決定" name="submit" id="attend">
|
52
|
+
|
53
|
+
</form>
|
54
|
+
|
55
|
+
</div>
|
56
|
+
|
57
|
+
```
|