質問編集履歴
3
補足のため、サンプルの記述を変更
title
CHANGED
File without changes
|
body
CHANGED
@@ -55,8 +55,8 @@
|
|
55
55
|
|
56
56
|
<ul id="list">
|
57
57
|
<li class="attribute01 type01 option03"><a href="#"><img src="sample.jpg"></a></li>
|
58
|
-
<li class="attribute03 type03 option01"><a href="#"><img src="sample.jpg"></a></li>
|
58
|
+
<li class="attribute03 type03 type02 option01"><a href="#"><img src="sample.jpg"></a></li>
|
59
|
-
<li class="attribute02 type05 option04"><a href="#"><img src="sample.jpg"></a></li>
|
59
|
+
<li class="attribute02 type05 type03 option04 option05"><a href="#"><img src="sample.jpg"></a></li>
|
60
60
|
<li class="attribute05 type06 option06"><a href="#"><img src="sample.jpg"></a></li>
|
61
61
|
<li class="attribute03 type07 option05"><a href="#"><img src="sample.jpg"></a></li>
|
62
62
|
<li class="attribute04 type04 option07"><a href="#"><img src="sample.jpg"></a></li>
|
2
ID名の間違い
title
CHANGED
File without changes
|
body
CHANGED
@@ -86,11 +86,11 @@
|
|
86
86
|
|
87
87
|
$.each($filter_tags, function() {
|
88
88
|
if($('#' + this).is(':checked')) {
|
89
|
-
$("#
|
89
|
+
$("#list li:not(." + this + ")").addClass('hidden-not-' + this);
|
90
90
|
$filter_all.prop('checked',false).parent().removeClass("selected");
|
91
91
|
}
|
92
92
|
else if($('#' + this).not(':checked')) {
|
93
|
-
$("#
|
93
|
+
$("#list li:not(." + this + ")").removeClass('hidden-not-' + this);
|
94
94
|
}
|
95
95
|
});
|
96
96
|
|
1
初心者アイコンのつけ忘れ
title
CHANGED
File without changes
|
body
CHANGED
File without changes
|