$(function () {
$(".search-button").click(function () {
$("#industryVal").val("");
$("#colorsVal").val("");
$("#orderByVal").val("");
$("#orderIndexVal").val("");
//还原排序方式
$('.change-nav span').each(function () {
if ($(this).hasClass('mr-px')) {
return;
}
$(this).removeClass('colorf60').attr('data-id', 2).find('i').html('');
})
})
})