class创建单击事件


        $(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('');
                })
            })
        })

原文地址:https://www.cnblogs.com/rukialu/p/4120253.html