質問編集履歴
1
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -99,3 +99,89 @@
|
|
99
99
|
どなたか教えていただけると幸いです。
|
100
100
|
|
101
101
|
どうぞよろしくお願いいたします。
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
### さらに補足
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
```JavaScript
|
110
|
+
|
111
|
+
|
112
|
+
|
113
|
+
※このコードはjsファイルを作成してフッターで読み込み
|
114
|
+
|
115
|
+
|
116
|
+
|
117
|
+
jQuery(document).ready(function($) {
|
118
|
+
|
119
|
+
var productArr = document.getElementById("checkBox").value;
|
120
|
+
|
121
|
+
$.cookie('productCheck', productArr, { expires: 100,path:'/'});
|
122
|
+
|
123
|
+
});
|
124
|
+
|
125
|
+
|
126
|
+
|
127
|
+
$(function() {
|
128
|
+
|
129
|
+
$('#checkBox').click(function() {
|
130
|
+
|
131
|
+
var prodName = ($(this).prop("checked") ? $(this).val() : null);
|
132
|
+
|
133
|
+
$.cookie('productCheck', prodName, {expires:100, path:'/'});
|
134
|
+
|
135
|
+
});
|
136
|
+
|
137
|
+
});
|
138
|
+
|
139
|
+
```
|
140
|
+
|
141
|
+
|
142
|
+
|
143
|
+
|
144
|
+
|
145
|
+
```JavaScript
|
146
|
+
|
147
|
+
※このコードは表示させたいページ内に記述
|
148
|
+
|
149
|
+
|
150
|
+
|
151
|
+
jQuery(document).ready(function($) {
|
152
|
+
|
153
|
+
var productName = $.cookie("productCheck");
|
154
|
+
|
155
|
+
$("#output1").val(productName);
|
156
|
+
|
157
|
+
});
|
158
|
+
|
159
|
+
```
|
160
|
+
|
161
|
+
```PHP
|
162
|
+
|
163
|
+
【フォーム画面】
|
164
|
+
|
165
|
+
<input type="text" name="output" id="output1" value="">
|
166
|
+
|
167
|
+
<input type="text" name="output" id="output2" value="">
|
168
|
+
|
169
|
+
<input type="text" name="output" id="output3" value="">
|
170
|
+
|
171
|
+
<input type="text" name="output" id="output4" value="">
|
172
|
+
|
173
|
+
<input type="text" name="output" id="output5" value="">
|
174
|
+
|
175
|
+
```
|
176
|
+
|
177
|
+
|
178
|
+
|
179
|
+
このように分けたら表示されるようになりました。
|
180
|
+
|
181
|
+
また、表示させたい個所をpタグにしていましたが、フォームページのテキストボックス内に表示させたいため、一部修正しました。
|
182
|
+
|
183
|
+
|
184
|
+
|
185
|
+
本来は複数の値(最大5個)を表示させたいのですが、最後にチェックした値しか表示されません。
|
186
|
+
|
187
|
+
あと、テキストボックス1つにつき1つのvalue値を入れたいのですが、それもどうするのかわかりません。
|