$(document).ready(function (){
function filterSvcType (svcType) {
var selectedServices = $("#service-list div");
var chose = selectedServices.filter(function() {
return $(this).data("service-type") == svcType;
});
console.log(chose);
}
filterSvcType("hosting");
});
我想要做的是这样称呼它:
filterSvcType("hosting").fadeOut();
我该怎么做呢?
最佳答案