我的函数根据数据属性返回过滤后的(数组)项目列表。
如果我可以使这个函数可链接,我会喜欢它:
$(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();
我该怎么做呢?