回答編集履歴
1
さんこう
test
CHANGED
@@ -11,3 +11,43 @@
|
|
11
11
|
u=1+2+3のような受け取り方をすることで処理します。
|
12
12
|
|
13
13
|
どうしたいかをまず決めてください
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
- sample
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
```javascript
|
22
|
+
|
23
|
+
<script>
|
24
|
+
|
25
|
+
$(function(){
|
26
|
+
|
27
|
+
$('#btn').on('click',function(){
|
28
|
+
|
29
|
+
var u=$('[name=area]:checked').map(function(){return encodeURIComponent($(this).val());}).get().join("+");
|
30
|
+
|
31
|
+
console.log("u="+u);
|
32
|
+
|
33
|
+
});
|
34
|
+
|
35
|
+
});
|
36
|
+
|
37
|
+
</script>
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
<form>
|
42
|
+
|
43
|
+
<input type="checkbox" name="area" value="あ">
|
44
|
+
|
45
|
+
<input type="checkbox" name="area" value="い">
|
46
|
+
|
47
|
+
<input type="checkbox" name="area" value="う">
|
48
|
+
|
49
|
+
<input type="button" value="make" id="btn">
|
50
|
+
|
51
|
+
</form>
|
52
|
+
|
53
|
+
```
|