...
|
...
|
@@ -16,11 +16,11 @@ $(document).on("click", ".big-category .plus", function () { |
|
|
if ($parent.hasClass("open")) {
|
|
|
$child.hide();
|
|
|
$parent.removeClass("open");
|
|
|
$(this).css("background-image", "url('../img/help/加.png')");
|
|
|
$(this).css("background-image", "url('../img/help/plus.png')");
|
|
|
} else {
|
|
|
$child.show();
|
|
|
$parent.addClass("open");
|
|
|
$(this).css("background-image", "url('../img/help/减.png')");
|
|
|
$(this).css("background-image", "url('../img/help/minus.png')");
|
|
|
}
|
|
|
});
|
|
|
|
...
|
...
|
|