質問編集履歴
1
書籍の改善
test
CHANGED
File without changes
|
test
CHANGED
@@ -15,6 +15,10 @@
|
|
15
15
|
|
16
16
|
|
17
17
|
```html
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
<form method="POST" name="selectOption" action="../../search.php/main/searchCategory.php">
|
18
22
|
|
19
23
|
<select name="categoryWomen" onclick="optionSelected()">
|
20
24
|
|
@@ -56,4 +60,36 @@
|
|
56
60
|
|
57
61
|
</select>
|
58
62
|
|
63
|
+
</form>
|
64
|
+
|
65
|
+
|
66
|
+
|
67
|
+
|
68
|
+
|
59
69
|
```
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
```javascript
|
78
|
+
|
79
|
+
<script>
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
function optionSelected(){
|
84
|
+
|
85
|
+
document.selectOption.submit();
|
86
|
+
|
87
|
+
|
88
|
+
|
89
|
+
}
|
90
|
+
|
91
|
+
|
92
|
+
|
93
|
+
</script>
|
94
|
+
|
95
|
+
```
|