52,787
社区成员
发帖
与我相关
我的任务
分享
var timer = null;
$(".checkbox").change(function(){
clearTimeout(timer);
timer = setTimeOut(function(){
if($(".checkbox:checked").length>0)
$.ajax();
},3000);
});
想法是这样子的,代码可能会不对哈~