回答編集履歴
2
意図的に内容を抹消する行為にあたるため
test
CHANGED
@@ -1,5 +1,107 @@
|
|
1
|
-
|
1
|
+
こんなんで、どないでっか?
|
2
2
|
|
3
|
+
```diff
|
3
4
|
|
5
|
+
//CSV書き出し
|
4
6
|
|
7
|
+
function readCsv(data) {
|
8
|
+
|
9
|
+
var csv = $.csv.toArrays(data);
|
10
|
+
|
11
|
+
- var insert_1 = '';
|
12
|
+
|
13
|
+
- var insert_2 = '';
|
14
|
+
|
15
|
+
- var insert_3 = '';
|
16
|
+
|
17
|
+
- $(csv).each(function() {
|
18
|
+
|
19
|
+
- if (this.length > 0 && this[0] === 'カテゴリ1') {
|
20
|
+
|
21
|
+
- insert_1 += '<li>';
|
22
|
+
|
23
|
+
- insert_1 += '<div>' + this[0] + '</div>';
|
24
|
+
|
25
|
+
- insert_1 += '<div>' + this[1] + '</div>';
|
26
|
+
|
27
|
+
- insert_1 += '<div>' + this[2] + '</div>';
|
28
|
+
|
29
|
+
- insert_1 += '<div>' + this[3] + '</div>';
|
30
|
+
|
31
|
+
- insert_1 += '<div>' + this[4] + '</div>';
|
32
|
+
|
33
|
+
- insert_1 += '<div>' + this[5] + '</div>';
|
34
|
+
|
35
|
+
- insert_1 += '</li>';
|
36
|
+
|
37
|
+
- } else if (this.length > 0 && this[0] === 'カテゴリ2') {
|
38
|
+
|
39
|
+
- insert_2 += '<li>';
|
40
|
+
|
41
|
+
- insert_2 += '<div>' + this[0] + '</div>';
|
42
|
+
|
43
|
+
- insert_2 += '<div>' + this[1] + '</div>';
|
44
|
+
|
45
|
+
- insert_2 += '<div>' + this[2] + '</div>';
|
46
|
+
|
47
|
+
- insert_2 += '<div>' + this[3] + '</div>';
|
48
|
+
|
49
|
+
- insert_2 += '<div>' + this[4] + '</div>';
|
50
|
+
|
51
|
+
- insert_2 += '<div>' + this[5] + '</div>';
|
52
|
+
|
53
|
+
- insert_2 += '</li>';
|
54
|
+
|
55
|
+
- } else if (this.length > 0 && this[0] === 'カテゴリ3') {
|
56
|
+
|
57
|
+
- insert_3 += '<li>';
|
58
|
+
|
59
|
+
- insert_3 += '<div>' + this[0] + '</div>';
|
60
|
+
|
61
|
+
- insert_3 += '<div>' + this[1] + '</div>';
|
62
|
+
|
63
|
+
- insert_3 += '<div>' + this[2] + '</div>';
|
64
|
+
|
65
|
+
- insert_3 += '<div>' + this[3] + '</div>';
|
66
|
+
|
67
|
+
- insert_3 += '<div>' + this[4] + '</div>';
|
68
|
+
|
69
|
+
- insert_3 += '<div>' + this[5] + '</div>';
|
70
|
+
|
71
|
+
- insert_3 += '</li>';
|
72
|
+
|
73
|
+
- } else{
|
74
|
+
|
75
|
+
- return false;
|
76
|
+
|
77
|
+
- }
|
78
|
+
|
79
|
+
- });
|
80
|
+
|
81
|
+
- $('#slick_1 .slider').append(insert_1);
|
82
|
+
|
83
|
+
- $('#slick_2 .slider').append(insert_2);
|
84
|
+
|
85
|
+
- $('#slick_3 .slider').append(insert_3);
|
86
|
+
|
5
|
-
|
87
|
+
+ $('.slick_box').each(function() {
|
88
|
+
|
89
|
+
+ const categoryId = $(this).attr('id').replace('slick_', '');
|
90
|
+
|
91
|
+
+ const rows = csv.filter(([category]) => category === `カテゴリ${categoryId}`);
|
92
|
+
|
93
|
+
+ const items = rows.map(values =>
|
94
|
+
|
95
|
+
+ $('<li>').append(values.map(v => $('<div>').text(v)))
|
96
|
+
|
97
|
+
+ );
|
98
|
+
|
99
|
+
+ $('.slider', this).append(items);
|
100
|
+
|
101
|
+
+ });
|
102
|
+
|
103
|
+
sliderInit();
|
104
|
+
|
105
|
+
}
|
106
|
+
|
107
|
+
```
|
1
テキスト追加
test
CHANGED
@@ -1,111 +1,5 @@
|
|
1
|
-
|
1
|
+
(都合により削除)
|
2
2
|
|
3
3
|
|
4
4
|
|
5
|
-
```diff
|
6
|
-
|
7
|
-
//CSV書き出し
|
8
|
-
|
9
|
-
function readCsv(data) {
|
10
|
-
|
11
|
-
var csv = $.csv.toArrays(data);
|
12
|
-
|
13
|
-
- var insert_1 = '';
|
14
|
-
|
15
|
-
- var insert_2 = '';
|
16
|
-
|
17
|
-
- var insert_3 = '';
|
18
|
-
|
19
|
-
- $(csv).each(function() {
|
20
|
-
|
21
|
-
- if (this.length > 0 && this[0] === 'カテゴリ1') {
|
22
|
-
|
23
|
-
- insert_1 += '<li>';
|
24
|
-
|
25
|
-
- insert_1 += '<div>' + this[0] + '</div>';
|
26
|
-
|
27
|
-
- insert_1 += '<div>' + this[1] + '</div>';
|
28
|
-
|
29
|
-
- insert_1 += '<div>' + this[2] + '</div>';
|
30
|
-
|
31
|
-
- insert_1 += '<div>' + this[3] + '</div>';
|
32
|
-
|
33
|
-
- insert_1 += '<div>' + this[4] + '</div>';
|
34
|
-
|
35
|
-
- insert_1 += '<div>' + this[5] + '</div>';
|
36
|
-
|
37
|
-
- insert_1 += '</li>';
|
38
|
-
|
39
|
-
- } else if (this.length > 0 && this[0] === 'カテゴリ2') {
|
40
|
-
|
41
|
-
- insert_2 += '<li>';
|
42
|
-
|
43
|
-
- insert_2 += '<div>' + this[0] + '</div>';
|
44
|
-
|
45
|
-
- insert_2 += '<div>' + this[1] + '</div>';
|
46
|
-
|
47
|
-
- insert_2 += '<div>' + this[2] + '</div>';
|
48
|
-
|
49
|
-
- insert_2 += '<div>' + this[3] + '</div>';
|
50
|
-
|
51
|
-
- insert_2 += '<div>' + this[4] + '</div>';
|
52
|
-
|
53
|
-
- insert_2 += '<div>' + this[5] + '</div>';
|
54
|
-
|
55
|
-
- insert_2 += '</li>';
|
56
|
-
|
57
|
-
- } else if (this.length > 0 && this[0] === 'カテゴリ3') {
|
58
|
-
|
59
|
-
- insert_3 += '<li>';
|
60
|
-
|
61
|
-
- insert_3 += '<div>' + this[0] + '</div>';
|
62
|
-
|
63
|
-
- insert_3 += '<div>' + this[1] + '</div>';
|
64
|
-
|
65
|
-
- insert_3 += '<div>' + this[2] + '</div>';
|
66
|
-
|
67
|
-
- insert_3 += '<div>' + this[3] + '</div>';
|
68
|
-
|
69
|
-
- insert_3 += '<div>' + this[4] + '</div>';
|
70
|
-
|
71
|
-
- insert_3 += '<div>' + this[5] + '</div>';
|
72
|
-
|
73
|
-
- insert_3 += '</li>';
|
74
|
-
|
75
|
-
- } else{
|
76
|
-
|
77
|
-
- return false;
|
78
|
-
|
79
|
-
- }
|
80
|
-
|
81
|
-
- });
|
82
|
-
|
83
|
-
- $('#slick_1 .slider').append(insert_1);
|
84
|
-
|
85
|
-
- $('#slick_2 .slider').append(insert_2);
|
86
|
-
|
87
|
-
- $('#slick_3 .slider').append(insert_3);
|
88
|
-
|
89
|
-
|
5
|
+
![イメージ説明](d7a9931f678708d658e2f6c057c6e6c7.png)
|
90
|
-
|
91
|
-
+ const categoryId = $(this).attr('id').replace('slick_', '');
|
92
|
-
|
93
|
-
+ const rows = csv.filter(([category]) => category === `カテゴリ${categoryId}`);
|
94
|
-
|
95
|
-
+ const items = rows.map(values =>
|
96
|
-
|
97
|
-
+ $('<li>').append(values.map(v => $('<div>').text(v)))
|
98
|
-
|
99
|
-
+ );
|
100
|
-
|
101
|
-
+ $('.slider', this).append(items);
|
102
|
-
|
103
|
-
+ });
|
104
|
-
|
105
|
-
sliderInit();
|
106
|
-
|
107
|
-
}
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
```
|